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

Builder curl-ares-solaris10-i386 Build #3604

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision034612cd515f249453a435f3d94b04f65744a54d
Got Revision034612cd515f249453a435f3d94b04f65744a54d
Changes7 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 3 hrs, 7 mins, 37 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-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 3604 Build
codebase Build
got_revision 034612cd515f249453a435f3d94b04f65744a54d Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 034612cd515f249453a435f3d94b04f65744a54d Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Qriist
  3. Stefan Eissing
  4. renovate[bot]

Timing:

StartWed Aug 6 11:16:51 2025
EndWed Aug 6 21:34:23 2025
Elapsed10 hrs, 17 mins, 32 secs

All Changes:

:

  1. Change #242210

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:32:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bf5265ad110596c2c4acf0548d5dc9162b4ddc24

    Comments

    dynbuf: assert on curlx_dyn_addf use with just "%s"
    Because it is wasteful and should be done better.
    
    Closes #18194

    Changed files

    • lib/curlx/dynbuf.c
  2. Change #242211

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:32:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e1a0e2b72c0a0ac99333f2a0cc52d82083fb5831

    Comments

    config2setopts: avoid curlx_dyn_addf(..., "%s"
    Closes #18194

    Changed files

    • src/config2setopts.c
  3. Change #242212

    Category curl
    Changed by Qriist <qriistohnoyoudont@gmail.com>
    Changed at Wed 06 Aug 2025 08:40:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ca2536a60ff1e27283221764c2f6fd1dffd0e8b6

    Comments

    BINDINGS.md: add LibQurl
    Add LibQurl to the list of known binding libraries.
    
    Closes #18195

    Changed files

    • docs/BINDINGS.md
  4. Change #242217

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 06 Aug 2025 08:41:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a1e4e8143108a6963737b5b29876c3702c054d17

    Comments

    GHA: update actions/download-artifact action to v5
    Closes #18193

    Changed files

    • .github/workflows/distcheck.yml
  5. Change #242218

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:42:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aec28f3ad3b4605951b544d2813c7de3a17ecc35

    Comments

    splay: add another assert for detected usage problem
    Closes #18199

    Changed files

    • lib/splay.c
  6. Change #242219

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

    Comments

    lib: replace conn [write]sockfd members by index
    The `connectdata` members `sockfd` and `writesockfd` needed to by either
    CURL_SOCKET_BAD or a copy of one of `conn->sock[2]`. When equal to one,
    that index was used to send/recv/poll the proper socket or connection
    filter chain.
    
    Replace those with `send_idx` and `recv_idx` which are either -1, 0 or 1
    to indicate which socket/filter to send/receive on.
    
    Closes #18179

    Changed files

    • lib/cfilters.c
    • lib/http.c
    • lib/multi.c
    • lib/transfer.c
    • lib/url.c
    • lib/urldata.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/wolfssh.c
  7. Change #242220

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 06 Aug 2025 08:47:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 034612cd515f249453a435f3d94b04f65744a54d

    Comments

    tool_urlglob: polish, cleanups, improvements
    - assert instead of printing "internal error" for unlikely events
    - avoid allocating the main struct
    - convert globerror() from macro to function
    - renames to shorter and clearer names
    - malloc + copy => memdup0
    - change buffer handling to dynbuf
    - realloc to handle more globs, but use less memory for few
    
    Closes #18198

    Changed files

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