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

Builder curl-ares-solaris10-sparc Build #3771

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 16 mins, 55 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-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3771 Build
codebase Build
got_revision cdbe4eb55609e2096e296faf86552f27514d6a01 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision cdbe4eb55609e2096e296faf86552f27514d6a01 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Rogers
  2. Stefan Eissing
  3. Stephen Psaradellis

Timing:

StartWed Sep 16 03:31:39 2026
EndWed Sep 16 16:37:03 2026
Elapsed13 hrs, 5 mins, 24 secs

All Changes:

:

  1. Change #281885

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Tue 15 Sep 2026 17:03:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 32c6bd5303bfafaa80453a7d112d240baf2f8141

    Comments

    hash: vary bucket placement across process runs
    hash_str() always starts from the same value, so a given key set lands
    in the same buckets on every run. Mix in a random seed generated at
    global init.
    
    Closes #22916

    Changed files

    • lib/easy.c
    • lib/hash.c
    • lib/hash.h
    • lib/rand.h
    • tests/unit/unit1603.c
  2. Change #281886

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 15 Sep 2026 17:04:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 35b0490aabf515b817ea2462722306cf118e7747

    Comments

    peer: speed up "same destination" check
    The dominant use in `Curl_peer_same_destination()` are checks on the
    very same hostname. Speed up the case-insensitive matching by performing
    a `strcmp()` first that is platform optimized.
    
    Closes #22914

    Changed files

    • lib/peer.c
    • lib/url.c
  3. Change #281898

    Category curl
    Changed by Stephen Psaradellis <s.n.psaradellisohnoyoudont@gmail.com>
    Changed at Tue 15 Sep 2026 23:14:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cdbe4eb55609e2096e296faf86552f27514d6a01

    Comments

    rtsp: do not read a response body when CURLOPT_NOBODY is set
    Follow-up to 458704d484. That change clears req.no_body for an RTSP
    response that announces a body with Content-Length, but req.no_body
    also carries the application's CURLOPT_NOBODY, so such a body was then
    read even when the application asked for no body. Only override the
    method-derived value.
    
    Add test1688: test657 with CURLOPT_NOBODY set, expecting headers only.
    
    Reported-by: Daniel Stenberg
    Ref: #22935
    Closes #22954

    Changed files

    • lib/http.c
    • tests/data/Makefile.am
    • tests/data/test1688
    • tests/libtest/lib567.c