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

Builder curl-ares-solaris11-sparc Build #4332

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartFri Aug 8 11:53:09 2025
EndFri Aug 8 12:21:50 2025
Elapsed28 mins, 40 secs

All Changes:

:

  1. Change #242437

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 08 Aug 2025 11:42:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 065a6531583d58b4f2fdf81e83863ccf3158ff7f

    Comments

    tool_writeout: check gmtime return code too
    If the unlikely event happen that it fails, it returns NULL.
    CodeSonar is not happy unless we check for it.
    
    Closes #18225

    Changed files

    • src/tool_writeout.c
  2. Change #242438

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 08 Aug 2025 11:43:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision da27db068fc888d7091d34708096bc8083f46554

    Comments

    tool_operate: cleanups
    - move the state struct from config to global. It is used as a single
      instance anyway so might as well be a single one to save memory.
    - simplify and combine several conditions
    - set default retry delay inititally
    - use better struct field names to make it easier to understand their
      purposes
    - remove the state->outfiles field as it was not necessary
    - remove superfluous glob cleanup call
    - move conditions around to remove an indent level
    - move the ->url NULL check
    
    Takes single_transfer()'s complexity score down from 78 to 68.
    
    Closes #18226

    Changed files

    • src/tool_cfgable.c
    • src/tool_cfgable.h
    • src/tool_operate.c
    • src/tool_operate.h
    • src/tool_operhlp.c