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

Builder curl-ares-solaris10-i386 Build #4518

Results:

Failed

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git updating ( 8 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 4518 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 35b0490aabf515b817ea2462722306cf118e7747 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. Joshua Rogers
  2. Stefan Eissing

Timing:

StartTue Sep 15 19:49:23 2026
EndWed Sep 16 05:26:28 2026
Elapsed9 hrs, 37 mins, 4 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