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

Builder curl-threaded-solaris11-sparc Build #5974

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionfeb609f28bc038b158d6e5f00e2aa30473b31d6e
Got Revisionfeb609f28bc038b158d6e5f00e2aa30473b31d6e
Changes3 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 24 mins, 40 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 33 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 5974 Build
codebase Build
got_revision feb609f28bc038b158d6e5f00e2aa30473b31d6e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision feb609f28bc038b158d6e5f00e2aa30473b31d6e 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
  2. Viktor Szakats
  3. Yedaya Katsman

Timing:

StartTue Jun 9 12:08:36 2026
EndTue Jun 9 13:00:08 2026
Elapsed51 mins, 32 secs

All Changes:

:

  1. Change #270042

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 09 Jun 2026 11:07:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 952b04474cb1fc18bf66ddf3b41587535b71ca1d

    Comments

    tidy-up: miscellaneous
    - badwords: replace stray synonyms with 'null-terminator'.
    - tests/FILEFORMAT.md: tidy up feature descriptions.
    - printf: replace stray `%i` masks with `%d` for consistency.
    - pytest: add comments for empty excepts to try silencing GitHub CodeQL
      warnings.
    - tool1394, unit1675: merge nested `if`s.
    - dnscache: fix typo in comment.
    - fix whitespace, indent and newlines.
    
    Closes #21921

    Changed files

    • docs/CODE_REVIEW.md
    • docs/examples/evhiperfifo.c
    • docs/internals/DYNBUF.md
    • docs/libcurl/curl_mprintf.md
    • docs/libcurl/opts/CURLOPT_DOH_URL.md
    • docs/tests/FILEFORMAT.md
    • include/curl/curl.h
    • lib/cf-haproxy.c
    • lib/cf-socket.c
    • lib/dnscache.c
    • lib/doh.c
    • lib/progress.c
    • lib/rand.c
    • lib/rand.h
    • lib/tftp.c
    • lib/urlapi.c
    • lib/vssh/libssh2.c
    • lib/vtls/apple.c
    • lib/vtls/openssl.c
    • m4/curl-compilers.m4
    • scripts/badwords.txt
    • tests/http/test_05_errors.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/ws_echo_server.py
    • tests/libtest/lib530.c
    • tests/libtest/lib582.c
    • tests/libtest/lib758.c
    • tests/server/sockfilt.c
    • tests/tunit/tool1394.c
    • tests/unit/unit1655.c
    • tests/unit/unit1675.c
  2. Change #270043

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 09 Jun 2026 11:11:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e66b81a53283100b0d53c840844d3865b3eba951

    Comments

    cookie: tailmatch the domains for secure override
    If a SECURE cookie is set for a sub-domain (`example.com`) and is then
    attempted to get set again for more specific part of that domain
    (`www.example.com`) without the SECURE property, the second occurance
    should not be allowed.
    
    Reported-by: Trail of Bits
    
    Verified by test 3305
    Closes #21910

    Changed files

    • lib/cookie.c
    • tests/data/Makefile.am
    • tests/data/test3305
  3. Change #270044

    Category curl
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Tue 09 Jun 2026 11:12:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision feb609f28bc038b158d6e5f00e2aa30473b31d6e

    Comments

    cf-socket: store errno from do_connect in ctx->error
    This fixes a misleading log in verbose mode when ipv6 connectivity isn't
    available, presumably also in other cases:
    
    ```
    * Immediate connect fail for 2a00:1450:4028:806::200e: Network is unreachable
    * connect to 2a00:1450:4028:806::200e port 443 from :: port 0 failed: Success
    ```
    
    Closes #21914

    Changed files

    • lib/cf-socket.c