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

Builder curl-ares-solaris11-i386 Build #5401

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 10 mins, 36 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-ares-solaris11-i386 slave
buildername curl-ares-solaris11-i386 Builder
buildnumber 5401 Build
codebase Build
got_revision 8e20dbc62e2107f32e137f9295db99d183a0bf3c Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 8e20dbc62e2107f32e137f9295db99d183a0bf3c 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. Stefan Eissing

Timing:

StartFri Sep 18 09:35:53 2026
EndFri Sep 18 12:18:39 2026
Elapsed2 hrs, 42 mins, 46 secs

All Changes:

:

  1. Change #282105

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 18 Sep 2026 09:52:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 01eff554af43e65bc4910f79c41e3090f46ac451

    Comments

    u32_ptrset: a set of uint32_t + void* values
    This replaces uint32_hash as a leaner and faster implementation.
    It uses the same internal logic as u8_strset for hashing ids.
    
    Use in http2 and QUIC implementations to connect `data->mid` to
    the `stream` struct of the protocol implementation.
    
    Unit test in test3211
    
    Remove uint-hashset.[ch] and its unit test.
    
    Closes #22986

    Changed files

    • lib/Makefile.inc
    • lib/http2.c
    • lib/u32_ptrset.c
    • lib/u32_ptrset.h
    • lib/uint-hash.c
    • lib/uint-hash.h
    • lib/vquic/cf-ngtcp2-cmn.c
    • lib/vquic/cf-ngtcp2-cmn.h
    • lib/vquic/cf-ngtcp2.c
    • lib/vquic/cf-quiche.c
    • lib/vquic/vquic_int.h
    • tests/data/Makefile.am
    • tests/data/test1616
    • tests/data/test3211
    • tests/unit/Makefile.inc
    • tests/unit/unit1399.c
    • tests/unit/unit1616.c
    • tests/unit/unit3211.c
  2. Change #282106

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Sep 2026 09:54:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0480ce153276b4a6f029ce5890fc0c493c07e8c3

    Comments

    perf-numparser: add number parsing performance test
    Closes #22990

    Changed files

    • tests/perf/Makefile.inc
    • tests/perf/README.md
    • tests/perf/numparser.c
  3. Change #282110

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Sep 2026 10:13:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 029611f31bbf4aeeb5d48926d61fbd71a6936cf5

    Comments

    rtspd: read the test number from the server.cmd file
    In the same style sws aleady does it. Removes the need to have the test
    number in the request.
    
    Closes #22989

    Changed files

    • tests/server/first.h
    • tests/server/rtspd.c
    • tests/server/sws.c
  4. Change #282111

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Sep 2026 10:17:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c0609c5a4f9a0bf12af855bc3711717375c45f5e

    Comments

    http: abide to close-rules when transfer-encoding off
    There is no other way to know when the transfer ends when there is a
    transfer encoding set but not chunked - even if transfere-encoding is
    disabled. Tweak test 319 to verify this (by setting a wrong
    Content-Length).
    
    Add test 2918 to make sure it works the same also when the
    Content-Length and Transfer-Encoding headers arrive in the other order
    
    Fixed test 1494, it needs to close after "Transfer-Encoding: identity".
    
    Assisted-by: Stefan Eissing
    
    Reported-by: Richard Payne
    Closes #22950

    Changed files

    • lib/http.c
    • tests/data/Makefile.am
    • tests/data/test1494
    • tests/data/test2918
    • tests/data/test319
  5. Change #282125

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 18 Sep 2026 11:04:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e20dbc62e2107f32e137f9295db99d183a0bf3c

    Comments

    u8_strset, u32_ptrset: fix boundaries handling
    - u8_strset: iterator over all entries using a uint16_t index
    - u32_ptrset: limit max size to 31 bits, managing INT32_MAX entries
    
    Closes #22991

    Changed files

    • lib/u32_ptrset.c
    • lib/u32_ptrset.h
    • lib/u8_strset.c