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

Builder curl-ares-solaris10-sparc Build #3411

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 20 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 48 mins, 50 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3411 Build
codebase Build
got_revision 62ba3604dc58ab339f34d96935b10e8384403af1 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 62ba3604dc58ab339f34d96935b10e8384403af1 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartThu Jan 15 06:49:56 2026
EndFri Jan 16 00:30:19 2026
Elapsed17 hrs, 40 mins, 23 secs

All Changes:

:

  1. Change #255256

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 14 Jan 2026 14:54:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2b12dbc1165a3cb005d0e21fb0340bd69aaf0ffa

    Comments

    tool_cb_hdr: move etag and content-disposition logic into funcs
    Co-authored-by: Jay Satiro
    Closes #20288

    Changed files

    • src/tool_cb_hdr.c
  2. Change #255271

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 14 Jan 2026 20:46:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6437bd79ae8c67066728a83ed62edee48e596bdd

    Comments

    cmake: avoid setting custom property on built-in interface targets
    In some cases `ZLIB::ZLIB` and/or `OpenSSL::SSL` may be aliases, which
    prevents setting a curl-specific property (.pc module name) in them:
    ```
    CMake Error at [...]/curl/CMakeLists.txt:910 (set_target_properties):
      set_target_properties can not be used on an ALIAS target.
    ```
    
    Fix by special-casing these built-in targets and manually converting
    them to .pc module names, without using the targets themselves
    to carry this information throughout curl's internal build logic.
    
    Reported-by: Tomáš Malý
    Fixes #20313
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973
    Closes #20316

    Changed files

    • CMakeLists.txt
  3. Change #255290

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 14 Jan 2026 23:34:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 82e0d387a2e110d704bb18c42894749548b804b4

    Comments

    build: drop more forward function declarations
    Most by moving functions around. Also delete unused ones.
    Reducing their number from 83 to 33.
    
    Remaining ones due to:
    - circular dependencies.
    - H3 code, that I did not attempt to update and likely the above applies.
    - static declarations with attributes (`CURL_PRINTF`, `WARN_UNUSED_RESULT`).
    - OS400 code.
    
    Closes #20321

    Changed files

    • lib/cf-h2-proxy.c
    • lib/cfilters.c
    • lib/conncache.c
    • lib/cw-out.c
    • lib/cw-pause.c
    • lib/http2.c
    • lib/mime.c
    • lib/rtsp.c
    • lib/sendf.c
    • lib/urlapi.c
    • lib/vtls/schannel.c
    • lib/vtls/vtls_scache.c
    • lib/vtls/wolfssl.c
    • src/tool_cb_dbg.c
    • src/tool_writeout.c
  4. Change #255308

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 15 Jan 2026 02:06:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 62ba3604dc58ab339f34d96935b10e8384403af1

    Comments

    checksrc: do not apply `BANNEDFUNC` to struct member functions
    Omit this warning, when `close()` is banned:
    ```
    ./lib/vtls/vtls.c:947:13: warning: use of close is banned (BANNEDFUNC)
       Curl_ssl->close(cf, data);
                 ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/21012427938/job/60410334312?pr=20212#step:3:6
    
    Ref: #20212
    
    Closes #20323

    Changed files

    • scripts/checksrc.pl
    • tests/data/test1185