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

Builder curl-threaded-solaris11-i386 Build #5300

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision2f1e94eaede6bd0534203f00abc90cced1d5dc4d
Got Revision2f1e94eaede6bd0534203f00abc90cced1d5dc4d
Changes4 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 ...' ( 48 mins, 21 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 5300 Build
codebase Build
got_revision 2f1e94eaede6bd0534203f00abc90cced1d5dc4d Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2f1e94eaede6bd0534203f00abc90cced1d5dc4d 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:

StartFri Jun 26 14:21:20 2026
EndFri Jun 26 16:04:43 2026
Elapsed1 hrs, 43 mins, 22 secs

All Changes:

:

  1. Change #272886

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 26 Jun 2026 13:41:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d8f9f0a91284a8b83b67be55f6744a90fd3e5e1e

    Comments

    tool_operate: remove call to abort()
    Make an assert and return a plain error instead. No abort in release
    code.
    
    - also remove from two examples
    - add as a banned function in checksrc
    - document the banned state
    
    Closes #22182

    Changed files

    • docs/examples/multi-event.c
    • docs/examples/multi-uv.c
    • docs/internals/CODE_STYLE.md
    • scripts/checksrc.pl
    • src/tool_operate.c
  2. Change #272890

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 26 Jun 2026 13:43:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a6af50c484f6bbd1c01573685d6be6234ae944ea

    Comments

    multi: forbid curl_easy_pause from within multi socket callback
    - there is a risk for a nasty recursive situation
    
    - we avoid certain risks that the pause call changes things so that when
      returning from the callback, the state of some internals is undefined
      and we need to reload which is easy to miss
    
    - we can't think of legitiate use cases for doing this. This is
      basically just the new favorite point for AI and security researchers
      to find hypothetical problems
    
    Closes #22179

    Changed files

    • docs/libcurl/curl_easy_pause.md
    • lib/easy.c
    • lib/multi.c
    • lib/multi_ev.c
    • lib/multihandle.h
    • lib/multiif.h
    • tests/libtest/lib758.c
  3. Change #272891

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 26 Jun 2026 13:50:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 00d5562650e660fe9302afccccb7365abe8968fe

    Comments

    proxy: optimized env lookups
    Optimize proxy env var lookups for the commen case of 'https' and 'http'
    urls. We do this for every transfer.
    
    Closes #22168

    Changed files

    • lib/proxy.c
  4. Change #272892

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 26 Jun 2026 13:52:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2f1e94eaede6bd0534203f00abc90cced1d5dc4d

    Comments

    conncache: connection alive checks intervals
    Do not check if a particular connection is alive or not more than once
    every second. We did this on every connection reuse which is overkill
    when sending many requests to the same host.
    
    Closes #22169

    Changed files

    • lib/conncache.c
    • lib/url.c
    • lib/url.h
    • lib/urldata.h