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

Builder curl-threaded-solaris11-sparc Build #5582

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 24 mins, 11 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 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 5582 Build
codebase Build
got_revision 03a792b186da7fdfbe4b85b022d7790091455bdc Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 03a792b186da7fdfbe4b85b022d7790091455bdc 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 14:45:08 2026
EndWed Apr 1 15:35:08 2026
Elapsed49 mins, 59 secs

All Changes:

:

  1. Change #263165

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 01 Apr 2026 14:36:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4f3a0ef90df891b491ad51944360ec21789b0146

    Comments

    test1275.pl: ignore indented sections in markdowns
    They are special and should not be checked like this.
    
    Closes #21191

    Changed files

    • tests/test1275.pl
  2. Change #263166

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 01 Apr 2026 14:38:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 03a792b186da7fdfbe4b85b022d7790091455bdc

    Comments

    HSTS: cap the list at 1,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 1674
    
    Ref #21183
    Closes #21190

    Changed files

    • lib/hsts.c
    • lib/hsts.h
    • tests/data/Makefile.am
    • tests/data/test1674
    • tests/unit/Makefile.inc
    • tests/unit/unit1674.c