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

Builder curl-ares-solaris11-i386 Build #3650

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Keno Fischer
  3. Viktor Szakats

Timing:

StartWed Jun 25 13:13:56 2025
EndWed Jun 25 16:00:13 2025
Elapsed2 hrs, 46 mins, 17 secs

All Changes:

:

  1. Change #237747

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 25 Jun 2025 11:02:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7ba58cf89c8bbe9b34b6b8be1a1249a7ee19028b

    Comments

    autotools: drop headers from src mk-unity rules (fixup)
    Unnecessarily added in f4649425f2d4a7bef1ce628f2450ee2a4477a06e.
    
    Follow-up to f4649425f2d4a7bef1ce628f2450ee2a4477a06e #17727
    
    Closes #17742

    Changed files

    • src/Makefile.am
  2. 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
  3. 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
  4. 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
  5. 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