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

Builder curl-ares-solaris11-sparc Build #5881

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 5881 Build
codebase Build
got_revision cce4d3b0edd98b9b10f62485f01d37b81fd46a00 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision cce4d3b0edd98b9b10f62485f01d37b81fd46a00 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Rogers
  2. Stefan Eissing
  3. penpal

Timing:

StartWed May 20 20:23:06 2026
EndWed May 20 20:50:29 2026
Elapsed27 mins, 22 secs

All Changes:

:

  1. Change #267863

    Category curl
    Changed by penpal <unamemeohnoyoudont@proton.me>
    Changed at Wed 20 May 2026 19:51:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ba7b65f95736c5fbef3ccfaeb945273379e003ee

    Comments

    sspi: clear SSPI credentials on AcquireCredentialsHandle failure
    - Clear credentials on AcquireCredentialsHandle failure so it is not
      used on a subsequent call.
    
    SSPI initialization may evaluate the credentials pointer to determine
    whether or not a prior call to AcquireCredentialsHandle was successful,
    therefore we must clear it on a failed call.
    
    Closes https://github.com/curl/curl/pull/21642

    Changed files

    • lib/vauth/krb5_sspi.c
    • lib/vauth/ntlm_sspi.c
    • lib/vauth/spnego_sspi.c
  2. Change #267864

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 20 May 2026 19:51:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5e4e62962c0f8536c612a5248e2ac4eb7d67ae66

    Comments

    cfilters: fix busy loop on blocked transfers
    When a transfer gets paused after the connection has been established,
    any data sitting in the kernel socket buffers will no longer get read.
    
    Prevent the sockets form being added to the pollsets, because they
    will trigger POLLIN endlessly and cause a busy poll loop. Same in event
    based processing.
    
    Reported-by: Harry Sintonen
    
    Fixes https://github.com/curl/curl/issues/21671
    Closes https://github.com/curl/curl/pull/21675

    Changed files

    • lib/cfilters.c
  3. Change #267865

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Wed 20 May 2026 19:51:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cce4d3b0edd98b9b10f62485f01d37b81fd46a00

    Comments

    schannel: fix revoke_best_effort setting for proxy
    - Fix revoke_best_effort reading wrong ssl config.
    
    Prior to this change the revoke_best_effort setting for the proxy was
    wrongly ignored in favor of the same setting for the destination host.
    
    In other words, CURLSSLOPT_REVOKE_BEST_EFFORT set via
    CURLOPT_PROXY_SSL_OPTIONS did not apply to the proxy and
    CURLSSLOPT_REVOKE_BEST_EFFORT set via CURLOPT_SSL_OPTIONS wrongly
    applied to the proxy.
    
    Closes https://github.com/curl/curl/pull/21683

    Changed files

    • lib/vtls/schannel_verify.c