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

Builder curl-unthreaded-solaris10-sparc Build #14136

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 31 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 20 mins, 42 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 2 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 14136 Build
codebase Build
got_revision 35b0490aabf515b817ea2462722306cf118e7747 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 35b0490aabf515b817ea2462722306cf118e7747 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Joshua Rogers
  2. Stefan Eissing

Timing:

StartTue Sep 15 20:46:24 2026
EndWed Sep 16 09:53:46 2026
Elapsed13 hrs, 7 mins, 22 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