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

Builder curl-threaded-solaris11-i386 Build #5349

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision1143bc9ac6912743a0fef78d5ac81426b172976d
Got Revision1143bc9ac6912743a0fef78d5ac81426b172976d
Changes3 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 51 mins, 21 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 26 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 5349 Build
codebase Build
got_revision 1143bc9ac6912743a0fef78d5ac81426b172976d Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 1143bc9ac6912743a0fef78d5ac81426b172976d Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartWed Sep 9 21:41:47 2026
EndWed Sep 9 23:29:16 2026
Elapsed1 hrs, 47 mins, 28 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