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

Builder curl-threaded-solaris11-sparc Build #5317

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision947775a613f5e41e69a9a2baac7b79fc4e597544
Got Revision947775a613f5e41e69a9a2baac7b79fc4e597544
Changes2 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 9 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 5317 Build
codebase Build
got_revision 947775a613f5e41e69a9a2baac7b79fc4e597544 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 947775a613f5e41e69a9a2baac7b79fc4e597544 Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartFri Feb 20 17:43:45 2026
EndFri Feb 20 19:08:44 2026
Elapsed1 hrs, 24 mins, 59 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