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

Builder curl-unthreaded-solaris11-sparc Build #4123

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiond22057d78b27278588bc8c5188d41120d7498566
Got Revisiond22057d78b27278588bc8c5188d41120d7498566
Changes4 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 25 mins, 32 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 11 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Keno Fischer

Timing:

StartWed Jun 25 13:04:43 2025
EndWed Jun 25 14:25:51 2025
Elapsed1 hrs, 21 mins, 8 secs

All Changes:

:

  1. Change #237750

    Category curl
    Changed by Keno Fischer <kenoohnoyoudont@alumni.harvard.edu>
    Changed at Wed 25 Jun 2025 11:23:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 40dcf5567c3c212c78c4671aeacba8f55ec013a1

    Comments

    docs: reflect that delimiter-separated capath is only OpenSSL
    curl passes down the capath directly to the backends. OpenSSL will then
    delimiter-separate this path internally to support multiple directories
    (using its certificate hash scheme). However, the other backends
    (wolfSSL, mbedTLS, gnutls) only expect a single directory (and do not
    use the hash scheme, preferring to iterate the directory and load all
    files). This adjusts the `--capath` documentation to reflect that
    multiple paths is an OpenSSL-specific feature. Alternatively, curl could
    delimiter-separate these itself, but I'm not sure it's worth it.
    
    Ref https://github.com/JuliaLang/NetworkOptions.jl/issues/41
    
    Closes #17737

    Changed files

    • docs/cmdline-opts/capath.md
  2. Change #237751

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 25 Jun 2025 11:27:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4c5672774f1b7b0227f51e4163d7f8445b10957e

    Comments

    runtests.pl: fix sprintf() using one too many %s
    Closes #17740

    Changed files

    • tests/runtests.pl
  3. Change #237756

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 25 Jun 2025 11:44:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b5593a6fe06db9541b6a6221085d9f959a8b0c54

    Comments

    urlapi: use uppercase hex encoding
    For consistency. RFC 3986 section 2.1 says:
    
      "URI producers and normalizers should use uppercase hexadecimal digits
      for all percent-encodings."
    
    Reported-by: Jeroen Ooms
    Fixes #17685
    Closes #17739

    Changed files

    • lib/escape.c
    • lib/escape.h
    • lib/urlapi.c
    • lib/vtls/keylog.c
    • tests/data/test1138
    • tests/data/test472
    • tests/libtest/lib1560.c
  4. Change #237757

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 25 Jun 2025 11:46:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d22057d78b27278588bc8c5188d41120d7498566

    Comments

    lib: address singleuse issues
    - markup some functions UNITTEST, so that they are static unless in a
      unit test build
    
    - make some functions #ifdef UNITTESTS as they are only used from unit
      tests
    
    - adjusted unit tests accordingly to use local prototypes for functions
      not global in the library
    
    Closes #17734

    Changed files

    • lib/llist.c
    • lib/llist.h
    • lib/uint-bset.c
    • lib/uint-hash.c
    • lib/uint-spbset.c
    • lib/uint-spbset.h
    • lib/uint-table.c
    • lib/uint-table.h
    • tests/unit/unit1300.c
    • tests/unit/unit3212.c
    • tests/unit/unit3213.c