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

Builder curl-threaded-solaris10-sparc Build #3541

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 33 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 45 mins, 44 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 3541 Build
codebase Build
got_revision 930f2e822715d4602326d549e5a8085ee8c3ec11 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 930f2e822715d4602326d549e5a8085ee8c3ec11 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. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Mar 30 16:10:15 2026
EndTue Mar 31 04:00:52 2026
Elapsed11 hrs, 50 mins, 36 secs

All Changes:

:

  1. Change #262805

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 10:59:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 89dbe84fdf7dd6232c2b9faf3789847d2b374f13

    Comments

    curl_ngtcp2: extend and update callbacks for 1.22.0+
    Fixing:
    ```
    lib/vquic/curl_ngtcp2.c:880:1: error: missing field 'recv_stateless_reset2' initializer [-Wmissing-field-initializers]
      880 | };
          | ^
    ```
    
    Also:
    - GHA/http3-linux: bump to ngtcp2 v1.22.0.
    
    Refs:
    https://github.com/ngtcp2/ngtcp2/releases/tag/v1.22.0
    https://github.com/ngtcp2/ngtcp2/commit/b7bfe41db898b59bda031f8ca2d41abf51fa3726
    https://github.com/ngtcp2/ngtcp2/pull/2035
    
    Closes #21152

    Changed files

    • .github/workflows/http3-linux.yml
    • lib/vquic/curl_ngtcp2.c
  2. Change #262806

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 11:00:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9dfe69cb3cef425c537d82ea883ce8697aad2c4b

    Comments

    GHA/windows: bump to stunnel 5.77 (from 5.76)
    Ref: https://www.stunnel.org/mailman3/hyperkitty/list/stunnel-announce@lists.stunnel.org/thread/BLYG54UILDIADJC2HWVFWQ2MK2YC3HOM/
    
    Closes #21154

    Changed files

    • .github/workflows/windows.yml
  3. Change #262823

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:02:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3502c5159b0b8ee1cd3ae0bb8756f81dbc930d8a

    Comments

    GHA/linux: drop slow server logic for non-Azure source [ci skip]
    Ref: https://github.com/curl/curl/actions/runs/23740539514/job/69156214117
    Follow-up to 5172ba5475cffc525c2338dfa63f818e11e80a42 #21107

    Changed files

    • .github/workflows/linux.yml
  4. Change #262827

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:05:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 89741958e870659fbe8a1dcfb6f52ce012424d9a

    Comments

    cmake: use `AIX` built-in variable (with CMake 4.0+)
    Also keep the old method for compatibility with CMake <4.0.
    
    Ref: https://cmake.org/cmake/help/v4.0/variable/AIX.html
    
    Closes #21134

    Changed files

    • CMake/OtherTests.cmake
    • CMakeLists.txt
    • lib/CMakeLists.txt
  5. Change #262830

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 30 Mar 2026 13:28:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 335dc0e3c59688270140115c9f84ea5c929870d8

    Comments

    cf-dns: connection filter for DNS queries
    New connection filter `cf-dns` that manages DNS queries. If hands
    out addresses and HTTPS-RR records to anyone interested. Used by
    HTTPS and IP happy eyeballing.
    
    Information may become available *before* the libcurl "dns entry"
    is complete, e.g. all queries have been answered. The cf-ip-happy
    filter uses this information to start connection attempts as soon
    as the first address is available.
    
    The multi MSTATE_RESOLVING was removed. A new connection always
    goes to MSTATE_CONNECTING. The connectdata bit `dns_resolved`
    indicates when DNS information is complete. This is used for
    error reporting and starting the progress meter.
    
    Removed dns entries `data->state.dns[i]`, as the `cf-dns` filter
    now keeps the reference now.
    
    Many minor tweaks for making this work and pass address information
    around safely.
    
    Closes #21027

    Changed files

    • lib/Makefile.inc
    • lib/asyn-ares.c
    • lib/asyn-thrdd.c
    • lib/asyn.h
    • lib/cf-dns.c
    • lib/cf-dns.h
    • lib/cf-https-connect.c
    • lib/cf-https-connect.h
    • lib/cf-ip-happy.c
    • lib/cf-ip-happy.h
    • lib/cf-socket.c
    • lib/cf-socket.h
    • lib/cfilters.c
    • lib/cfilters.h
    • lib/connect.c
    • lib/connect.h
    • lib/curl_addrinfo.c
    • lib/curl_addrinfo.h
    • lib/curl_share.c
    • lib/curl_trc.c
    • lib/dnscache.c
    • lib/dnscache.h
    • lib/easy.c
    • lib/ftp.c
    • lib/hostip.c
    • lib/hostip.h
    • lib/multi.c
    • lib/multihandle.h
    • lib/url.c
    • lib/url.h
    • lib/urldata.h
    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/curl_ngtcp2.h
    • lib/vquic/curl_quiche.c
    • lib/vquic/curl_quiche.h
    • lib/vquic/vquic.c
    • lib/vquic/vquic.h
    • tests/data/test142
    • tests/data/test2500
    • tests/data/test500
    • tests/data/test506
    • tests/libtest/lib506.c
    • tests/unit/unit1620.c
    • tests/unit/unit2600.c
  6. Change #262839

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:46:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 20b18a43f6dd8ff3a1ae72c2774f469a74224fc7

    Comments

    src: drop detecting and redefining system symbol `ftruncate`
    Introduce `toolx_ftruncate()` macro and map it to existing replacements
    for non-mingw-w64 Windows and DJGPP, or to `ftruncate` otherwise.
    
    Follow-up to 6041b9b11b904c64305eb6c3f456b83288c1f323 #21109
    
    Closes #21130

    Changed files

    • CMake/unix-cache.cmake
    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • configure.ac
    • lib/config-mac.h
    • lib/config-os400.h
    • lib/config-riscos.h
    • lib/config-win32.h
    • lib/curl_config-cmake.h.in
    • m4/curl-functions.m4
    • src/tool_cb_hdr.c
    • src/tool_operate.c
    • src/tool_setup.h
    • src/tool_util.c
  7. Change #262840

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:46:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9f66cdddf4ca4e211f79af28d92b000b839cdddc

    Comments

    tool_dirhie: stop redefining system symbol `mkdir`
    Replace with local macro `toolx_mkdir()`, and map that to
    platform-specific implementations as necessary.
    
    Closes #21133

    Changed files

    • src/tool_dirhie.c
  8. Change #262841

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:46:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3c729284714706f324752509d050bab9095afeb2

    Comments

    build: drop redundant `USE_QUICHE` guards
    When used together with `USE_OPENSSL`. `USE_QUICHE` always implies
    `USE_OPENSSL`.
    
    Also: merge two (now identical) `#if` blocks in `openssl.c`.
    
    Closes #21135

    Changed files

    • lib/vtls/keylog.c
    • lib/vtls/openssl.c
    • src/curlinfo.c
    • tests/libtest/cli_hx_download.c
  9. Change #262842

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 13:46:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 930f2e822715d4602326d549e5a8085ee8c3ec11

    Comments

    build: drop duplicate `pthread.h` includes
    Already included from `curl_setup.h`.
    
    Closes #21144

    Changed files

    • lib/curl_threads.h
    • lib/easy_lock.h
    • lib/thrdpool.c
    • lib/thrdqueue.c
    • tests/libtest/lib1565.c
    • tests/libtest/lib3026.c