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

Builder curl-threaded-solaris10-sparc Build #3740

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 28 mins, 46 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-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 3740 Build
codebase Build
got_revision 05ddf5511ac765c8fc4eb44507ab7c585116f665 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 05ddf5511ac765c8fc4eb44507ab7c585116f665 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. Anton Karpov
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartTue Aug 18 05:47:33 2026
EndTue Aug 18 20:18:08 2026
Elapsed14 hrs, 30 mins, 34 secs

All Changes:

:

  1. Change #278486

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 17 Aug 2026 16:28:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c2da5c7e66ce5f4edb6315dc4da6a6fa7d44f69f

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  2. Change #278498

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 17 Aug 2026 18:41:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bb406386d9e088873f5f640c55e14a69390abd01

    Comments

    curlx_inet_ntop: return `CURLcode`, drop setting `errno`
    To simplify and to remove an exception where `errno` was reused to
    return a socket error codes on Windows.
    
    The error was used by one call site (`sockaddr2string()` in
    `cf-socket.c`), but it was in practice always propagated as
    `SOCKEAFNOSUPPORT` to callers.
    
    Also:
    - cf-socket: update 3 error messages to show `CURLcode` accordingly.
    - if2ip: handle `curlx_inet_ntop()` error in `Curl_if2ip()`.
    - dnsd: display `CURLcode` on two errors.
    
    Follow-up to 39dec13ec08f8511f22ddc78bb36b40241dee915 #22170
    
    Closes #22229

    Changed files

    • lib/cf-socket.c
    • lib/curlx/inet_ntop.c
    • lib/curlx/inet_ntop.h
    • lib/ftp.c
    • lib/if2ip.c
    • lib/urlapi.c
    • lib/vdns/httpsrr.c
    • tests/server/dnsd.c
    • tests/unit/unit1607.c
    • tests/unit/unit1609.c
    • tests/unit/unit1961.c
  3. Change #278500

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 17 Aug 2026 19:11:51
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a01a24deaf7dee72e2a22f0d0f0a1e9db08f92aa

    Comments

    curlx_inet_pton: drop setting `errno` on error
    Follow-up to bb406386d9e088873f5f640c55e14a69390abd01 #22229
    
    Closes #22607

    Changed files

    • lib/curlx/inet_pton.c
  4. Change #278516

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 17 Aug 2026 23:35:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 406edd036ae560dd1c37da327f213b2c1a82b654

    Comments

    filter: change time reporting
    Replace the QUERY filter methods for connect and appconnect time with a
    new control CF_CTRL_REPORT_STATS that is triggered when a connect ends
    (successful or not).
    
    Filters in the connection can then report their statistics. Socket and
    TLS filters do this only once. Subsequent CF_CTRL_REPORT_STATS will do
    nothing.
    
    This prevents timers to be reported twice in STARTTLS scenarios.
    
    Fixes #22587 (again)
    Closes #22596

    Changed files

    • lib/cf-https-connect.c
    • lib/cf-ip-happy.c
    • lib/cf-socket.c
    • lib/cfilters.c
    • lib/cfilters.h
    • lib/connect.c
    • lib/vquic/cf-ngtcp2-cmn.c
    • lib/vquic/cf-ngtcp2-cmn.h
    • lib/vquic/cf-ngtcp2-proxy.c
    • lib/vquic/cf-ngtcp2.c
    • lib/vquic/cf-quiche.c
    • lib/vquic/vquic.c
    • lib/vtls/vtls.c
    • lib/vtls/vtls_int.h
  5. Change #278520

    Category curl
    Changed by Anton Karpov <karpovantonmeohnoyoudont@gmail.com>
    Changed at Tue 18 Aug 2026 00:11:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 05ddf5511ac765c8fc4eb44507ab7c585116f665

    Comments

    headers: name the arguments the way the definitions name them
    Eleven arguments are named one way in the header and another in the
    definition. the compiler only checks types so nothing is broken, but the
    header is what people read first, and then the name changes under them
    in the source:
    
    ```
    curl_dbg_malloc          size     ->  wantedsize
    curl_dbg_calloc          n, size  ->  wanted_elements, wanted_size
    curl_dbg_realloc         size     ->  wantedsize
    curl_dbg_strdup          src      ->  source
    r_freeaddrinfo           res      ->  cahead
    my_get_line              fp, db   ->  input, buf
    curl_slist_append_ccsid  l        ->  list
    curl_version_info_ccsid  cid      ->  ccsid
    curl_easy_setopt_ccsid   curl     ->  easy
    ```
    
    Follow-up to df6014894b789768b139fff27e8aed9dbc46ed79 #20794
    
    Closes #22550

    Changed files

    • lib/curl_setup.h
    • lib/fake_addrinfo.h
    • projects/OS400/ccsidcurl.c
    • projects/OS400/ccsidcurl.h
    • src/tool_parsecfg.h