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

Builder curl-threaded-solaris10-sparc Build #3739

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision8e2eced23436c832a858802423b4ea8b45cf403a
Got Revision8e2eced23436c832a858802423b4ea8b45cf403a
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 41 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 7 hrs, 17 mins, 28 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartMon Aug 17 14:53:12 2026
EndTue Aug 18 05:47:29 2026
Elapsed14 hrs, 54 mins, 17 secs

All Changes:

:

  1. Change #278469

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 17 Aug 2026 14:02:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 722362d87bad5df80ba76dbf1ccd578ec7b19e75

    Comments

    scorecard: fix argument handling when count and parallel are both 1
    Closes #22605

    Changed files

    • tests/http/scorecard.py
  2. Change #278470

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 17 Aug 2026 14:03:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c437d28c76485563b2570ee48ee2992e68ae7323

    Comments

    urldata: cleanups
    - sockindex: int -> int8_t
    - move connectdata members around for fun and profit
    - remove data->state.current_speed as unused
    - remove data->state.trailers_bytes_sent as unsed
    - remove data->state.trailers_buf as unsed
    
    The sockindex type change spread a little.
    
    Closes #22604

    Changed files

    • lib/cf-https-connect.c
    • lib/cf-https-connect.h
    • lib/cf-recvbuf.c
    • lib/cf-recvbuf.h
    • lib/cf-setup.c
    • lib/cf-setup.h
    • lib/cf-socket.c
    • lib/cf-socket.h
    • lib/cfilters.c
    • lib/cfilters.h
    • lib/conncache.c
    • lib/connect.c
    • lib/connect.h
    • lib/easy.c
    • lib/ftp.c
    • lib/http2.c
    • lib/http2.h
    • lib/multi.c
    • lib/openldap.c
    • lib/pingpong.c
    • lib/pingpong.h
    • lib/transfer.c
    • lib/transfer.h
    • lib/url.c
    • lib/urldata.h
    • lib/vdns/cf-dns.c
    • lib/vdns/cf-dns.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/openssl.c
    • lib/vtls/vtls.c
    • lib/vtls/vtls.h
    • lib/vtls/vtls_int.h
  3. Change #278471

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 17 Aug 2026 14:03:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5406d2627c07dc2ed3d77650c00c97afdd2d9502

    Comments

    urldata: drop four strings from the aptr struct
    - 'rtsp_transport'
    
      There is no need to keep this data around once the RTSP request has been
      issued.
    
    - 'accept_encoding'
    
      Only needed when creating the RTSP request.
    
    - 'uagent'
    
      The header is generated on demand from set.str[STRING_USERAGENT]
    
    - 'ref'
    
      Not necessary to keep around
    
    Closes #22603

    Changed files

    • lib/http.c
    • lib/rtsp.c
    • lib/transfer.c
    • lib/url.c
    • lib/urldata.h
  4. Change #278480

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 17 Aug 2026 15:05:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e2eced23436c832a858802423b4ea8b45cf403a

    Comments

    multi: initialisation order
    When creating a multi handle, global_init() may not have been
    invoked that. There is a lazy check for this in easy_init()
    that trigger global_init().
    
    Create the admin handle for a multi first, before any further
    operations, so easy_init() can trigger a global_init() when
    necessary.
    
    Closes #22606

    Changed files

    • lib/multi.c