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

Builder curl-threaded-solaris11-sparc Build #5581

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartWed Apr 1 12:31:57 2026
EndWed Apr 1 13:27:28 2026
Elapsed55 mins, 31 secs

All Changes:

:

  1. Change #263143

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 01 Apr 2026 11:06:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c1963e2d2ca51a6bac0cd337d3935873ecadd2c2

    Comments

    altsvc: drop the prio field from the struct
    The value is not used for anything, no point in keeping it in memory.
    
    Closes #21188

    Changed files

    • lib/altsvc.c
    • lib/altsvc.h
  2. Change #263144

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 01 Apr 2026 12:05:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0805ec043ecb4f2b43782ec06779a27fa8d06d4a

    Comments

    altsvc: cap the list at 5,000 entries
    Avoid never-ending growth.
    
    When adding more entries, it now deletes the first entry in the list,
    which is the oldest added entry still held in memory. I decided to avoid
    a Least Recently Used concept as I suspect with a list with this many
    entries most entries have not been used, and we don't save the timestamp
    of recent use anyway.
    
    The net effect might (no matter what) be that the removed entry might
    feel a bit "random" in the eyes of the user.
    
    Verify with test 1669.
    
    Reported-by: Geeknik Labs
    Fixes #21183
    Closes #21189

    Changed files

    • lib/altsvc.c
    • lib/altsvc.h
    • tests/data/Makefile.am
    • tests/data/test1669
    • tests/unit/Makefile.inc
    • tests/unit/unit1669.c