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

Builder curl-unthreaded-solaris11-sparc Build #5357

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 37 mins, 32 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 6 mins, 40 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 5357 Build
codebase Build
got_revision b1f853a3849d0e8116ae4e2aedfb9ca65f92282d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b1f853a3849d0e8116ae4e2aedfb9ca65f92282d Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu Feb 26 04:44:33 2026
EndThu Feb 26 06:41:04 2026
Elapsed1 hrs, 56 mins, 31 secs

All Changes:

:

  1. Change #258985

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 26 Feb 2026 04:19:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d38bf7949d3acf5b484187fd3e81e0bd33b56715

    Comments

    tests/server: fix to clear the complete `srvr_sockaddr_union_t` variable
    Reported by clang-tidy (seen on Linux with v18, v19, v20, not on macOS):
    ```
    tests/server/dnsd.c:552:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/dnsd.c:556:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/rtspd.c:1183:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/rtspd.c:1187:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/sws.c:2235:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/sws.c:2239:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/tftpd.c:1188:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/tftpd.c:1192:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/util.c:860:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    tests/server/util.c:864:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage]
    ```
    Ref: https://github.com/curl/curl/actions/runs/22424827575/job/64930560425?pr=20725
    
    Cherry-picked from #20725
    
    Closes #20730

    Changed files

    • tests/server/dnsd.c
    • tests/server/rtspd.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/server/util.c
  2. Change #258986

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 26 Feb 2026 04:19:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b1f853a3849d0e8116ae4e2aedfb9ca65f92282d

    Comments

    unit3205: suppress two clang-tidy false positives
    Silencing:
    ```
    tests/unit/unit3205.c:565:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result]
      565 |         expect = (const char *)memcpy(alt, "DHE-", 4);
          |                                ^~~~~~            ~~~
          |                                strcpy
    tests/unit/unit3205.c:569:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result]
      569 |         expect = (const char *)memcpy(alt + 4, "DHE-", 4) - 4;
          |                                ^~~~~~                ~~~
          |                                strcpy
    ```
    Ref: https://github.com/curl/curl/actions/runs/22425366818/job/64932197466?pr=20725
    
    Cherry-picked from #20725
    
    Closes #20731

    Changed files

    • tests/unit/unit3205.c