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

Builder curl-threaded-solaris11-sparc Build #4425

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 26 mins, 4 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 4425 Build
codebase Build
got_revision 05407422fb418f48cbf4f4dc1ac0dd88be615e5c Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 05407422fb418f48cbf4f4dc1ac0dd88be615e5c Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartTue Aug 26 15:12:25 2025
EndTue Aug 26 15:38:37 2025
Elapsed26 mins, 12 secs

All Changes:

:

  1. Change #243927

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 26 Aug 2025 14:59:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ebff00f1af77f5e74b0cc71d6a54ad212bab857d

    Comments

    tool_getparam: let --trace-config override -v
    If --trace-config is used to set a level before -v is used, don't reset
    the state on first -v (to "-all") as it otherwise does. This way,
    --trace-config can be used to set specific trace items before -v on the
    command line and it still works.
    
    Previously, the first -v use would otherwise reset and undo the earlier
    --trace-config items.
    
    Fixes #18346
    Closes #18361

    Changed files

    • src/tool_cfgable.h
    • src/tool_getparam.c
    • tests/runner.pm
  2. Change #243928

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 26 Aug 2025 15:01:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 05407422fb418f48cbf4f4dc1ac0dd88be615e5c

    Comments

    socks_sspi: simplify, clean up Curl_SOCKS5_gssapi_negotiate
    This function returned error on MANY places, each with its own cleanup
    sequence and by the look of it almost all of them were incomplete,
    making them leak resources on errors.
    
    This take now gotos to the error label where it cleans everything up
    before returning error. This also simplifies the function a lot.
    
    Closes #18315

    Changed files

    • lib/socks_sspi.c