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

Builder curl-threaded-solaris11-i386 Build #4466

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf2d008811db2edefad035b9dcfc8865459999ee7
Got Revisionf2d008811db2edefad035b9dcfc8865459999ee7
Changes2 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 44 mins, 56 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 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 4466 Build
codebase Build
got_revision f2d008811db2edefad035b9dcfc8865459999ee7 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f2d008811db2edefad035b9dcfc8865459999ee7 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. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartThu Jan 8 23:18:55 2026
EndFri Jan 9 01:32:41 2026
Elapsed2 hrs, 13 mins, 46 secs

All Changes:

:

  1. Change #254578

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 08 Jan 2026 22:35:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e3691612ea1acb28e77fee6b4b2b9da0ac2c8f8b

    Comments

    urldata: switch to uint* types more widely
    In particular, it turns 'unsigned long' into 'uint32_t' since the code
    needs to build and run just as fine on Windows which has 32 bit longs,
    so we know the code works with 32 bit field versions.
    
    This makes Curl_easy 56 bytes smaller on my 64 bit Linux (maximized
    build).
    
    Closes #20209

    Changed files

    • lib/http.c
    • lib/setopt.c
    • lib/urldata.h
  2. Change #254579

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Thu 08 Jan 2026 22:36:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f2d008811db2edefad035b9dcfc8865459999ee7

    Comments

    ngtcp2: stabilize recv
    When receiving on a stream that already failed or has already been closed,
    return the matching error code without touching the connection. In case
    the connection shows errors, e.g. the server closed, those errors should
    not have impact on an already failed/closed stream.
    
    This might mitigate flakiness in pytest 07_13 where unexpected errors
    occur after a successful upload.
    
    Closes #20220

    Changed files

    • lib/vquic/curl_ngtcp2.c