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

Builder curl-unthreaded-solaris10-sparc Build #13260

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3ad4b440738ea9a81043dc59d945b0e751c27072
Got Revision3ad4b440738ea9a81043dc59d945b0e751c27072
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 35 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 50 mins, 54 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Ammar Faizi
  2. Daniel Stenberg
  3. Stefan Eissing

Timing:

StartFri Jul 18 00:44:36 2025
EndFri Jul 18 15:02:43 2025
Elapsed14 hrs, 18 mins, 7 secs

All Changes:

:

  1. Change #240019

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Jul 2025 00:32:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6e44631d9c0632bae42d85af3831cc2155066975

    Comments

    tool_operate: avoid superfluous strdup'ing output
    Closes #17946

    Changed files

    • src/tool_operate.c
  2. Change #240020

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Jul 2025 00:36:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f5d7d7637c86ad78b3c9da4f9946eddd69488303

    Comments

    RELEASE-NOTES: synced
    And bump version

    Changed files

    • RELEASE-NOTES
  3. Change #240021

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 18 Jul 2025 00:38:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bfa317c8cd058903b7c6eaf8e6a1f3e6553710a0

    Comments

    curlver: bump to 8.15.1 (for now?)

    Changed files

    • include/curl/curlver.h
  4. Change #240022

    Category curl
    Changed by Ammar Faizi <ammarfaizi2ohnoyoudont@gnuweeb.org>
    Changed at Fri 18 Jul 2025 00:38:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5cefe93eb644f757c5a685263a42961048b7d586

    Comments

    socks: do_SOCKS5: Fix invalid buffer content on short send
    Ahmad Gani intercepts the sendto syscall to simulate short send, but
    curl incorrectly handles it. It keeps resending the version:
    
      sendto(4, "\x05", 1, MSG_NOSIGNAL, NULL, 0) = 1
      sendto(4, "\x05", 1, MSG_NOSIGNAL, NULL, 0) = 1
    
    Don't restart the buffer in the `CONNECT_SOCKS_INIT` case if
    `sx->outstanding` is not zero. It should continue sending the
    advanced buffer.
    
    Fixes #17942
    Reported-by: Ahmad Gani <reyuki@gnuweeb.org>
    Signed-off-by: Ammar Faizi <ammarfaizi2@gnuweeb.org>
    Closes #17943

    Changed files

    • lib/socks.c
  5. Change #240023

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 18 Jul 2025 00:40:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3ad4b440738ea9a81043dc59d945b0e751c27072

    Comments

    openssl: some small cleanups
    - rename Curl_oss_check_peer_cert() to Curl_ossl_check_peer_cert()
    - leave altname match loop after the first success when the match
      was an ip address
    - remove static subj_alt_hostcheck() since it did not really do much
    - use length based infof() output of altname, even though it does
      seem always to be nul terminated
    
    Closes #17940

    Changed files

    • lib/vquic/vquic-tls.c
    • lib/vtls/hostcheck.h
    • lib/vtls/openssl.c
    • lib/vtls/openssl.h