Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-threaded-solaris10-sparc Build #3497

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionb83ade783d8dca498ababcac9b749e35c1711037
Got Revisionb83ade783d8dca498ababcac9b749e35c1711037
Changes6 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 1 mins, 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 12 mins, 20 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 3497 Build
codebase Build
got_revision b83ade783d8dca498ababcac9b749e35c1711037 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b83ade783d8dca498ababcac9b749e35c1711037 Build
scheduler schedule-curl-threaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Mar 2 19:09:56 2026
EndTue Mar 3 13:10:35 2026
Elapsed18 hrs, 38 secs

All Changes:

:

  1. Change #259475

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 02 Mar 2026 09:18:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7fe5b933d862af72d4e7e5a95933c8c707b53dc9

    Comments

    TODO: drop the alt-svc fallback
    Let's return to this subject if someone actually needs this for their
    specific use case.
    
    See #17152
    Closes #20786

    Changed files

    • docs/TODO.md
  2. Change #259525

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 13:45:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision da6fbb12a6598a7c9e9e54d66e1454973ffc888e

    Comments

    http1: fix potential NULL dereference in `Curl_h1_req_parse_read()`
    Reported by clang-tidy v22 with `clang-analyzer-*` explicitly enabled:
    
    ```
    lib/http1.c:89:31: error: Subtraction of a non-null pointer
     (from variable 'line_end') and a null pointer (via field 'line')
     results in undefined behavior [clang-analyzer-core.NullPointerArithm]
       89 |   parser->line_len = line_end - parser->line + 1;
          |                               ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/22534731241/job/65279952830?pr=20778#step:11:85
    
    Ref: #20778
    
    Closes #20779

    Changed files

    • lib/http1.c
  3. Change #259527

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 14:01:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7a77884a66be59eca14dc468e115d008010a7129

    Comments

    clang-tidy: enable `clang-analyzer-*` checks explicitly, fix fallout
    v22.1.0 disabled them by default.
    
    Fix fallout:
    - http: check NULL to silence false positives in `HD_VAL()`.
    
    Ref: https://releases.llvm.org/22.1.0/tools/clang/tools/extra/docs/ReleaseNotes.html#improvements-to-clang-tidy
    
    Follow-up to da6fbb12a6598a7c9e9e54d66e1454973ffc888e #20779
    Follow-up to ce4db9c2efca0bd89e556e231d940c988d84a606 #20751
    
    Closes #20778

    Changed files

    • .clang-tidy.yml
    • lib/http.c
  4. Change #259533

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 14:50:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fcde8d7e3745df3b4d83c86d0a1f0caef398511b

    Comments

    cmake: minor improvements to integration test framework
    - add support for separate provider / consumer cmake options in
      `find_package` tests. To help test more integration scenarios.
      Refs: #20784 #20729 #20764
    
    - dump generated curl config files in `find_package` tests.
      (cmake CONFIG source, `libcurl.pc`, `curl-config`.
    
    - test.sh: use `sha256sum` (was: `openssl`).
    
    Closes #20773

    Changed files

    • tests/cmake/test.sh
  5. Change #259536

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 15:28:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a5c6a4067ab797e8962d8279c1677918aee42384

    Comments

    clang-tidy: fix `readability-suspicious-call-argument`
    Also:
    - curlx/strerr: avoid a false positive by dropping an interim variable.
    - enable this check.
    
    Ref: #20627 (initial attempt)
    
    Closes #20777

    Changed files

    • .clang-tidy.yml
    • lib/curlx/strerr.c
    • tests/libtest/cli_hx_download.c
    • tests/libtest/cli_hx_upload.c
  6. Change #259554

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 16:01:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b83ade783d8dca498ababcac9b749e35c1711037

    Comments

    multi: fix unreachable code compiler warning
    ```
    lib/multi.c:305:5: error: code will never be executed [clang-diagnostic-unreachable-code]
      305 |     goto error;
          |     ^~~~~~~~~~
    ```
    
    Cherry-picked from #20774
    
    Closes #20788

    Changed files

    • lib/multi.c