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

Builder curl-ares-solaris10-sparc Build #2917

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiona93113b5b4d5dbf14eca1b503b963fb673ccfd4e
Got Revisiona93113b5b4d5dbf14eca1b503b963fb673ccfd4e
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 25 mins, 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 22 mins, 17 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 21 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 2917 Build
codebase Build
got_revision a93113b5b4d5dbf14eca1b503b963fb673ccfd4e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision a93113b5b4d5dbf14eca1b503b963fb673ccfd4e Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Oxan van Leeuwen
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartThu Aug 7 03:52:45 2025
EndThu Aug 7 19:30:56 2025
Elapsed15 hrs, 38 mins, 10 secs

All Changes:

:

  1. Change #242247

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 06 Aug 2025 14:12:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6cebd35b4cda026d6f4ad682a51561be10b7e915

    Comments

    lib: xfer_setup simplify
    Make variants for transfers that send/receive or do both with just the
    parameters they need. Split out the shutdown setting into a separate
    function. Only FTP bothers with that.
    
    Closes #18203

    Changed files

    • lib/curl_rtmp.c
    • lib/dict.c
    • lib/ftp.c
    • lib/gopher.c
    • lib/http.c
    • lib/imap.c
    • lib/openldap.c
    • lib/pop3.c
    • lib/rtsp.c
    • lib/smtp.c
    • lib/transfer.c
    • lib/transfer.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/wolfssh.c
  2. Change #242248

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 14:13:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 019991c25ef0b0867381636f7f3d83b752e396be

    Comments

    multi: fix bad splay management
    The splay tree is a tree where each easy handle can be added *once*. The
    expire time for that node is the closest expire time for that easy
    handle.
    
    Easy handles can however have more expire times queued up, so when the
    node is removed from the splay tree because it is the next in line to
    take care of, we must check if there is another expire time in the queue
    and then add the node back into the splay.
    
    Failing to do the later part, the calling of add_next_timeout after
    Curl_splaygetbest, would leave the state.expiretime on the previous time
    stamp, which when could make the next call to Curl_splaygetbest use the
    wrong time stamp and get a wrong node out, causing trouble.
    
    Reported-by: letshack9707 on hackerone
    Closes #18201

    Changed files

    • lib/multi.c
  3. Change #242251

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 06 Aug 2025 15:07:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4e5459c8e1541cfcfa8ba14ba60daaaddae56ca5

    Comments

    tests/ech_tests.sh: indent, if/for style, inline ifs
    Sync with rest of shell scripts.
    
    Follow-up to 2485a2d10054cfc8fce769bd45fa1a26fe070d8e #17001
    Closes #18187

    Changed files

    • tests/ech_tests.sh
  4. Change #242263

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 16:47:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4b61e44e3d2093864c1beba984e90627bd12e43d

    Comments

    tool_operate: use the correct config pointer
    Triggered when doing 100+ parallel globbed upload transfers.
    
    Reported-by: letshack9707 on hackerone
    
    Closes #18200

    Changed files

    • src/tool_operate.c
  5. Change #242271

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 17:19:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ab9dfebdaed1f24c9d155e920452a8e30a4d5ef3

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  6. Change #242274

    Category curl
    Changed by Oxan van Leeuwen <oxan.van.leeuwenohnoyoudont@mollie.com>
    Changed at Wed 06 Aug 2025 17:58:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a93113b5b4d5dbf14eca1b503b963fb673ccfd4e

    Comments

    libcurl: reset rewind flag in curl_easy_reset()
    curl_easy_reset() did not reset the `rewind_read` flag. This caused any
    handles that previously had a CURLE_SEND_FAIL_REWIND error to get stuck
    with that error, failing any subsequent requests, even if they didn't
    have any body at all.
    
    Verified in test 3034
    
    Fixes #18206
    Closes #18207

    Changed files

    • lib/request.c
    • tests/data/Makefile.am
    • tests/data/test3034
    • tests/libtest/Makefile.inc
    • tests/libtest/lib3034.c