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

Builder curl-threaded-solaris11-i386 Build #3964

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartWed Oct 29 16:51:45 2025
EndWed Oct 29 20:06:25 2025
Elapsed3 hrs, 14 mins, 39 secs

All Changes:

:

  1. Change #247040

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 29 Oct 2025 13:34:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 446dae5bfe3277d9458321f6888d7e214f832a21

    Comments

    ngtcp2: overwrite rate-limits defaults
    In pytests test_08 with the Caddy server, the new rate-limiting in
    ngtcp2 did close the connection because it found "too many" stream data
    packet repeats.
    
    It is unclear if this is some Caddy issue or if the ngtcp2 implementaton
    is wrong. Or if curl can do anything here.
    
    Reported as https://github.com/ngtcp2/ngtcp2/issues/1850
    
    This PR overwrites the ratelimit defaults in ngtcp2 with ten times
    increased values. This makes the errors disappear on macOS.
    
    Enable test_08_04/05 in CI again to see if there are any issues
    to be found there. (We had those disabled before having parallel
    pytests.)
    
    Closes #19274

    Changed files

    • lib/vquic/curl_ngtcp2.c
    • tests/http/test_08_caddy.py
  2. Change #247046

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 29 Oct 2025 16:17:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7973cb0b3ef2f2de677e65bc29062c122536262b

    Comments

    http: fix `-Wunreachable-code` in !websockets !unity builds
    Also requires non-unity build. Possibly more non-default options are
    necessary to reproduce. Seen with llvm/clang.
    
    ```
    lib/http.c:1856:15: error: code will never be executed [-Werror,-Wunreachable-code]
     1856 |     httpreq = HTTPREQ_GET;
          |               ^~~~~~~~~~~
    1 error generated.
    ```
    
    Closes #19275

    Changed files

    • lib/http.c
  3. Change #247047

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 29 Oct 2025 16:17:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 25aee8648ab1c8c5db03db0d3494523491511772

    Comments

    http: fix `-Wunused-variable` in !alt-svc !proxy !ws builds
    ```
    lib/http.c:2783:23: error: unused variable 'conn' [-Werror,-Wunused-variable]
     2783 |   struct connectdata *conn = data->conn;
          |                       ^~~~
    1 error generated.
    ```
    
    Closes #19276

    Changed files

    • lib/http.c