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

Builder curl-ares-solaris11-i386 Build #4703

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 55 mins, 33 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave
buildername curl-ares-solaris11-i386 Builder
buildnumber 4703 Build
codebase Build
got_revision b83ade783d8dca498ababcac9b749e35c1711037 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b83ade783d8dca498ababcac9b749e35c1711037 Build
scheduler schedule-curl-ares-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Mar 2 16:30:39 2026
EndMon Mar 2 19:05:02 2026
Elapsed2 hrs, 34 mins, 23 secs

All Changes:

:

  1. 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
  2. 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
  3. 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
  4. 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