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

Builder curl-unthreaded-solaris11-i386 Build #3873

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionc278c508e2acfad5f2603febfdba80a30427cd3f
Got Revisionc278c508e2acfad5f2603febfdba80a30427cd3f
Changes6 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 53 mins, 52 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-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 3873 Build
codebase Build
got_revision c278c508e2acfad5f2603febfdba80a30427cd3f Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision c278c508e2acfad5f2603febfdba80a30427cd3f Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. David Zhuang
  3. Stefan Eissing
  4. renovate[bot]

Timing:

StartWed Sep 3 14:09:32 2025
EndWed Sep 3 16:51:13 2025
Elapsed2 hrs, 41 mins, 40 secs

All Changes:

:

  1. Change #244366

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 11:35:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 765b5ab0cdaa6156885591f1e56110a0d2e975f8

    Comments

    tool_getparam: warn on more unicode prefixes
    If a string argument is expected and the first two bytes are 0xe2 ex80
    and the third has the 7th bit set, that's enough for curl to warn.
    
    Previously we tried to detect and warn only for the unicode double
    quote, but users might use single quotes, other quotes or even lead the
    argument with one of the "zero widths" characters. This is an attempt to
    detect many of those. Without triggering for "normal" IDN hostnames.
    
    Closes #18459

    Changed files

    • src/tool_getparam.c
    • tests/data/test469
    • tests/data/test470
  2. Change #244367

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 03 Sep 2025 11:37:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8603d5262b09c5641c4b69a83a24fcf7f5aac232

    Comments

    GHA: update awslabs/aws-lc to v1.60.0
    Closes #18458

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  3. Change #244369

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 11:55:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 967a626af48aafd3747c39a5597bd8c4a7977a7a

    Comments

    idn: reject conversions that end up as a zero length hostname
    Reported-by: RepoRascal on hackerone
    Closes #18462

    Changed files

    • lib/idn.c
  4. Change #244374

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 03 Sep 2025 12:51:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9f1102cf740c30b3da8f5df299ae8c9c088fbce8

    Comments

    pytest: add tests for getting a non-existing ftp file
    Check that return code is 78.
    
    Closes #18463

    Changed files

    • tests/http/test_30_vsftpd.py
    • tests/http/test_31_vsftpds.py
    • tests/http/test_32_ftps_vsftpd.py
  5. Change #244378

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 03 Sep 2025 12:52:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5e6bc73570557db2ceb092d1bc7284aca9271f15

    Comments

    GHA: Update cloudflare/quiche to v0.24.6
    Closes #18464

    Changed files

    • .github/workflows/http3-linux.yml
  6. Change #244379

    Category curl
    Changed by David Zhuang <dzhuangohnoyoudont@roblox.com>
    Changed at Wed 03 Sep 2025 12:54:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c278c508e2acfad5f2603febfdba80a30427cd3f

    Comments

    http: do the cookie list access under lock
    A previous refactor of cookie logic changed Curl_cookie_getlist to no
    longer return a list of copied cookies, but instead return a linked list
    pointing to existing cookies. The returned linked list is accessed
    outside of the scope of the cookie share lock in http_cookies, which
    leads to issues if the shared cookie list is modified at the same time.
    This is the relevant commit: be39ed1
    
    Closes #18457

    Changed files

    • lib/http.c