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

Builder curl-unthreaded-solaris11-i386 Build #5367

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision35b0490aabf515b817ea2462722306cf118e7747
Got Revision35b0490aabf515b817ea2462722306cf118e7747
Changes2 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 52 mins, 17 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-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5367 Build
codebase Build
got_revision 35b0490aabf515b817ea2462722306cf118e7747 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 35b0490aabf515b817ea2462722306cf118e7747 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Rogers
  2. Stefan Eissing

Timing:

StartTue Sep 15 15:25:00 2026
EndTue Sep 15 17:36:06 2026
Elapsed2 hrs, 11 mins, 6 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