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

Builder curl-ares-solaris10-i386 Build #4503

Results:

Failed

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 16 mins, 42 secs )
    1. stdio
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 4503 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 6ee61c3fe1479a6fbe85238fa83873b87b87f747 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartThu Sep 10 01:30:12 2026
EndThu Sep 10 12:17:26 2026
Elapsed10 hrs, 47 mins, 14 secs

All Changes:

:

  1. Change #281291

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 09 Sep 2026 23:10:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7c11f1a1bd53e2cd983fe153e45991302d097647

    Comments

    url: match connections without force reuse and candidates
    Changes to connection matching for a transfer:
    
    - When a transfer previously used a connection and that still
      exists in the connection bundle to search *and* that still
      matches, use exactly that one.
      This eliminates the `force_reuse` bit in match making.
    - Always apply all match conditions before selecting a match
      or candidate.
    - Store a connection for transfers that want NTLM/Negotiate as
      candidate in the matcher, to be used when no more, suitable
      connection is found.
    - NTML/Negotiate: check for creds match when `conn->creds_origin`
      is present. This should be the safe indicator that authenticaion
      is happening for the connection (as compared to requests) and
      credentials then need to match for it.
    
    Closes #22857

    Changed files

    • lib/conncache.c
    • lib/url.c
  2. Change #281292

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 09 Sep 2026 23:11:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fd8c409d6ab7367051d04646a31e976e3db0c6ed

    Comments

    h2 push: fix port check on pushed authority
    Whe the recent elimination of `conn->give` scheme, the change of port
    check was wrong when a forward proxy was involved.
    
    The real fix is to the the origin scheme, not the connecion scheme, now
    that we have it.
    
    Closes #22882

    Changed files

    • lib/http2.c
  3. Change #281293

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 09 Sep 2026 23:12:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1143bc9ac6912743a0fef78d5ac81426b172976d

    Comments

    netrc: survive comment-only .netrc file
    A .netrc file with only a comment and no newline caused an NULL
    dereference
    
    Verify with test 2429
    
    Reported-by: Max Dymond
    Closes #22889

    Changed files

    • lib/netrc.c
    • tests/data/Makefile.am
    • tests/data/test2429
  4. Change #281295

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 09 Sep 2026 23:25:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6ee61c3fe1479a6fbe85238fa83873b87b87f747

    Comments

    lib: connection shutdown, cleanup code
    Move all shutdown related functions to cshutdn.c and give them
    `Curl_cshutdn_*` prefix.
    
    Add connection age handling methods to conncache.h, so that other code
    does not need to mess with details of how connections keep time.
    
    Closes #22888

    Changed files

    • lib/cfilters.c
    • lib/cfilters.h
    • lib/conncache.c
    • lib/conncache.h
    • lib/connect.c
    • lib/connect.h
    • lib/cshutdn.c
    • lib/cshutdn.h
    • lib/telnet.c
    • lib/transfer.c
    • lib/url.c
    • lib/vdns/hostip.c
    • lib/vtls/vtls.c