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

Builder curl-threaded-solaris10-sparc Build #3580

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision4c548b978f707a8ab18c4ff56231613958b37e02
Got Revision4c548b978f707a8ab18c4ff56231613958b37e02
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 14 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 54 mins, 58 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 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 3580 Build
codebase Build
got_revision 4c548b978f707a8ab18c4ff56231613958b37e02 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 4c548b978f707a8ab18c4ff56231613958b37e02 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. Dag-Erling Smørgrav
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Apr 20 02:45:03 2026
EndMon Apr 20 08:40:17 2026
Elapsed5 hrs, 55 mins, 13 secs

All Changes:

:

  1. Change #264952

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 19 Apr 2026 14:05:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9e38e067691ec6da8a736c13b5f9c548120ffd8e

    Comments

    GHA: keep testing 3 as openssl-prev, bump mainline to 4
    Ref: #21317
    Ref: #21316
    
    Closes #21376

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  2. Change #264983

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 20 Apr 2026 00:06:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ebed4aaf0136392d8f040de16a29d89777323fb3

    Comments

    ws: fix a blocking curl_ws_send() to report written length correctly
    Fixes #21372
    Reported-by: Yiwei Hou
    Clkoses #21373

    Changed files

    • lib/ws.c
  3. Change #264986

    Category curl
    Changed by Dag-Erling Smørgrav <desohnoyoudont@des.dev>
    Changed at Mon 20 Apr 2026 00:44:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6506693f0b5a46f18ac63f792036c69a33031faa

    Comments

    lib1960: fix test failure
    On platforms where struct sockaddr has a length field, the current code
    leaves it uninitialized, resulting in a test failure when valgrind is
    used.
    
    Closes #21377

    Changed files

    • tests/libtest/lib1960.c
  4. Change #264987

    Category curl
    Changed by Dag-Erling Smørgrav <desohnoyoudont@des.dev>
    Changed at Mon 20 Apr 2026 00:44:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 759f2e5d97a70c7295e5c2256018cfcb1f8900e9

    Comments

    tests: avoid infinite recursion for `make check`
    The combination of a misspelled directory name and failing to check the
    result of cd leads to infinite recursion as `make check` simply invokes
    itself over and over.
    
    Follow-up to 00887aee8ca0efe0b40fa41b2a36e2d853d49b57 #18079
    Closes #21378

    Changed files

    • tests/http/Makefile.am
  5. Change #265000

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 20 Apr 2026 02:37:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4c548b978f707a8ab18c4ff56231613958b37e02

    Comments

    openssl: fix unused variable warnings in !verbose builds
    Also fix clang-tidy `readability-redundant-control-flow`.
    
    ```
    lib/vtls/openssl.c:4055:46: error: unused parameter 'reason' [-Wunused-parameter]
     4055 |                                          int reason)
          |                                              ^
    lib/vtls/openssl.c:4279:19: error: variable 'status' set but not used [-Wunused-but-set-variable]
     4279 |       const char *status = NULL;
          |                   ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/24641388439/job/72045859306?pr=21379
    
    ```
    lib/vtls/openssl.c:4092:7: error: Value stored to 'rv' is never read [clang-analyzer-deadcode.DeadStores]
     4092 |       rv = SSL_ech_get1_status(ssl, &inner, &outer);
          |       ^    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    lib/vtls/openssl.c:4092:7: note: Value stored to 'rv' is never read
     4092 |       rv = SSL_ech_get1_status(ssl, &inner, &outer);
          |       ^    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    lib/vtls/openssl.c:4112:3: error: redundant return statement at the end of a function with a void return type [readability-redundant-control-flow]
     4111 | #endif
          | ~~~~~~
     4112 |   return;
          |   ^~~~~~~
     4113 | }
    ```
    Ref: https://github.com/curl/curl/actions/runs/24642154148/job/72047919525?pr=21379#step:42:186
    
    Cherry-picked from #21379
    
    Closes #21380

    Changed files

    • lib/vtls/openssl.c