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

Builder curl-ares-solaris10-sparc Build #3428

Build In Progress:

Runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision1b50dcc2abd40d60d16c7c9b2fcbfc093c0419d3
Got Revision1b50dcc2abd40d60d16c7c9b2fcbfc093c0419d3
Changes9 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 44 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3428 Build
codebase Build
got_revision 1b50dcc2abd40d60d16c7c9b2fcbfc093c0419d3 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 1b50dcc2abd40d60d16c7c9b2fcbfc093c0419d3 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. Billy O'Neal
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartWed Jan 28 01:17:28 2026
Elapsed12 hrs, 42 mins, 51 secs

All Changes:

:

  1. Change #256470

    Category curl
    Changed by Billy O'Neal <bionohnoyoudont@microsoft.com>
    Changed at Tue 27 Jan 2026 09:07:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision af508e364193a0343e06233fbd5912a8c7d25f2e

    Comments

    curl_multi_perform.md: resolve inconsistency
    ... between curl_multi_perform and curl_multi_wait/poll documentation
    
    The `curl_multi_perform` documentation uses integer contextual
    conversion to `bool` to test the resulting `CURLMcode`, while other
    functions like `curl_multi_wait` and `curl_multi_poll` test against
    `CURLM_OK`. (I was initially confused by this as it looked like some
    docs call curl_multi_wait/poll on error, while some called only on
    success. But that was my misread, not a docs problem.)
    
    Also fixed the example to print which function call failed; previously
    an error reported by `curl_multi_perform` was printed as a failure of
    `curl_multi_wait`.
    
    Closes #20444

    Changed files

    • docs/libcurl/curl_multi_perform.md
  2. Change #256478

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 27 Jan 2026 14:03:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 065b149df07256174891dfcde307c39c98908d5f

    Comments

    OpenSSL: check reuse of sessions for verify status
    OpenSSL records its peer verification status inside its SSL_SESSION
    objects. When a session is later reused, the SSL connection inherits
    this verify status.
    
    Session keys prevent reuse of sessions between connections that verify
    the peer and those who do not. However, when Apple SecTrust is used
    to verify a connection, this does not update the Sessions verify
    status (and there is no setter). On session reuse, OpenSSL fails
    the verification and Apple SecTrust cannot verify either since the
    certificate peer chain is not available.
    
    Fix this by checking the verification status on session reuse and
    remove the session again if the peer needs to be verified, but the
    session is not.
    
    Reported-by: Christian Schmitza
    Fixes #20435
    Closes #20446

    Changed files

    • lib/vtls/gtls.c
    • lib/vtls/openssl.c
    • tests/http/test_02_download.py
    • tests/http/test_08_caddy.py
    • tests/http/test_17_ssl_use.py
    • tests/http/test_19_shutdown.py
    • tests/libtest/cli_hx_download.c
  3. Change #256487

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 27 Jan 2026 15:08:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a42fdc1f605d83d9b4431dfd10ce34df7ba5ad47

    Comments

    cmake/FindGSS: add backtick missing from comment
    Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973

    Changed files

    • CMake/FindGSS.cmake
  4. Change #256492

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 27 Jan 2026 15:24:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f824b4d004974603a4fbb8df3ddac8c2af2759ec

    Comments

    INSTALL-CMAKE.md: document new static options as experimental
    Follow-up to 26c39d8df182a63d28d81ed2b044e6a343519d1a #20015
    
    Closes #20450

    Changed files

    • docs/INSTALL-CMAKE.md
  5. Change #256493

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 27 Jan 2026 15:24:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 67ad0b0d7937194fd4522bf8b2a1a7f18011ce38

    Comments

    cmake: initialize internal `CURL_INCLUDES` variable
    Closes #20451

    Changed files

    • CMakeLists.txt
  6. Change #256518

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 27 Jan 2026 19:58:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a81ab3e6db370f31fca2fc67ca8bfda263f15caa

    Comments

    tool_doswin: avoid Windowsisms in socket code
    For general readability. Also to match the rest of the source code.
    
    - `SOCKADDR` -> `struct sockaddr`
    - `SOCKADDR_IN` -> `struct sockaddr_in`
    - `== SOCKET_ERROR` -> `== -1` or silent `!= 0`
    
    Follow-up to 9a2663322c330ff11275abafd612e9c99407a94a #17572
    
    Closes #20452

    Changed files

    • src/tool_doswin.c
  7. Change #256519

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 27 Jan 2026 19:58:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0f54ca6150f5bff5e8eb8b165de86262e98f5e69

    Comments

    GHA/windows: cache stunnel
    To avoid hammering `stunnel.org`.
    
    Follow-up to 7c3a4a4b4cffa7a335ce383da84e8b758ee5cafa #20410
    
    Closes #20454

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/windows.yml
  8. Change #256524

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 27 Jan 2026 23:36:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ae99d750dd3bf44de695669609428902e7b109d9

    Comments

    TODO: remove item about signals
    With SIGPIPE handling now automatic on most platforms, remove the
    TODO item again.
    
    Closes #20447

    Changed files

    • docs/TODO.md
  9. Change #256525

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 27 Jan 2026 23:42:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1b50dcc2abd40d60d16c7c9b2fcbfc093c0419d3

    Comments

    tls: remove checks for DEFAULT
    Since 9d8998c99408e1adf, the setopt code changes input DEFAULT to an
    actual more specific TLS version (1.2) for the backends to use and check
    for.
    
    This means that the default value (0L) cannot and should not actually be
    used when the TLS backends run. This change adds asserts to verify that
    and removes code that accepts the DEFAULT value as a valid version with
    the TLS version functions' logic.
    
    Applications can still set a specific lower version if they want (1, 1.0
    or 1.1).
    
    Closes #20453

    Changed files

    • lib/vtls/gtls.c
    • lib/vtls/mbedtls.c
    • lib/vtls/openssl.c
    • lib/vtls/rustls.c
    • lib/vtls/schannel.c
    • lib/vtls/wolfssl.c