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

Builder curl-unthreaded-solaris11-i386 Build #4646

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 58 mins, 0 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-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 4646 Build
codebase Build
got_revision 2862cafb49ec79b69f5521e860f2fd6041a934c8 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2862cafb49ec79b69f5521e860f2fd6041a934c8 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartFri Feb 20 18:56:06 2026
EndFri Feb 20 21:57:59 2026
Elapsed3 hrs, 1 mins, 52 secs

All Changes:

:

  1. Change #258369

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:09:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eabd452d27b599012f005c1bbec31660dbdae377

    Comments

    tests: avoid assignment in `if` conditions in `first.h`
    Found by clang-tidy `bugprone-assignment-in-if-condition`.
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/assignment-in-if-condition.html
    
    Closes #20646

    Changed files

    • tests/libtest/first.h
  2. Change #258371

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:15:49
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 947775a613f5e41e69a9a2baac7b79fc4e597544

    Comments

    libtests: drop two redundant `memset()`s
    Reported by clang-tidy `bugprone-sizeof-expression`.
    
    Silencing:
    ```
    tests/libtest/cli_h2_pausing.c:164:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      164 |   memset(&resolve, 0, sizeof(resolve));
          |                       ^
    tests/libtest/cli_upload_pausing.c:158:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      158 |   memset(&resolve, 0, sizeof(resolve));
          |                       ^
    ```
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/sizeof-expression.html
    
    Closes #20649

    Changed files

    • tests/libtest/cli_h2_pausing.c
    • tests/libtest/cli_upload_pausing.c
  3. Change #258376

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:33:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 977ac0c06cddff2b5e994ee427e947dbe68a558d

    Comments

    clang-tidy: check `misc-header-include-cycle`, fix in internal headers
    Also opt-out `curl/curl.h` because it includes `curl/mprintf.h`, which
    in turn includes `curl/curl.h` for `CURL_EXTERN`. Not changeable in
    public headers to remain compatible. (Somehow only triggered for
    examples.)
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/misc/header-include-cycle.html
    
    Closes #20645

    Changed files

    • .clang-tidy.yml
    • lib/functypes.h
    • src/tool_operate.h
    • src/tool_sdecls.h
  4. Change #258377

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:33:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2862cafb49ec79b69f5521e860f2fd6041a934c8

    Comments

    unit1654: fix clang-tidy `bugprone-redundant-branch-condition`
    ```
    tests/unit/unit1654.c:41:5: warning: redundant condition 'result' [bugprone-redundant-branch-condition]
       41 |     fail_if(result, "Curl_altsvc_load");
          |     ^
    tests/libtest/unitcheck.h:29:5: note: expanded from macro 'fail_if'
       29 |     if(expr) {                                                         \
          |     ^
    ```
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/redundant-branch-condition.html
    
    Closes #20648

    Changed files

    • .clang-tidy.yml
    • tests/unit/unit1654.c