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

Builder curl-threaded-solaris10-sparc Build #2854

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 51 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 47 mins, 46 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 mins, 24 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 2854 Build
codebase Build
got_revision 1cdac95e2e1022c298c1e4e551c7e8b5bd8fd5df Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 1cdac95e2e1022c298c1e4e551c7e8b5bd8fd5df 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 McCarney
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartFri Jun 13 01:57:54 2025
EndFri Jun 13 19:37:51 2025
Elapsed17 hrs, 39 mins, 57 secs

All Changes:

:

  1. Change #232059

    Category curl
    Changed by Daniel McCarney <danielohnoyoudont@binaryparadox.net>
    Changed at Thu 12 Jun 2025 08:29:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1e2e808defe6850295baa002d07cde9a129ec791

    Comments

    tls: remove Curl_ssl false_start
    The secure transport vTLS backend was the only Curl_ssl struct instance
    that populated the false_start field. Since its removed, we can now
    remove that field entirely. This was a protocol feature specific to TLS
    1.2 that has been replaced by the more widely adopted TLS 1.3 early data
    mechanisms.
    
    --false-start is now deprecated
    
    Closes #17595

    Changed files

    • lib/doh.c
    • lib/setopt.c
    • lib/urldata.h
    • lib/vtls/gtls.c
    • lib/vtls/mbedtls.c
    • lib/vtls/openssl.c
    • lib/vtls/rustls.c
    • lib/vtls/schannel.c
    • lib/vtls/vtls.c
    • lib/vtls/vtls.h
    • lib/vtls/vtls_int.h
    • lib/vtls/wolfssl.c
    • src/config2setopts.c
    • src/tool_cfgable.h
    • src/tool_getparam.c
  2. Change #232076

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 12 Jun 2025 12:01:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 49a1cfaec299a48fd87631eaa3aa1a93233b9ac3

    Comments

    GHA/non-native: skip test 2707 instead of all WebSocket tests on OpenBSD
    Narrowing down the test which may be causing the flaky 6-minute long
    delays and CI failures.
    
    Suggested-by: Calvin Ruocco
    Ref: https://github.com/curl/curl/pull/17562#issuecomment-2961629713
    
    Follow-up to 05db18e0541851a6fa71fb61e9c37bba4f56bce8 #17562
    Follow-up to d3594be6531df3d5eafcdd09f84ad9dee1777028 #17136
    
    Closes #17588

    Changed files

    • .github/workflows/non-native.yml
  3. Change #232084

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 12 Jun 2025 12:53:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c257753ee9017a045baae572bde4946fb3c09722

    Comments

    asyn-thrdd: free the previous name before strdup'ing the new
    Fixes #17602
    Reported-by: hiimmat on github
    Closes #17604

    Changed files

    • lib/asyn-thrdd.c
  4. Change #232089

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 12 Jun 2025 13:13:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cbc062a7b82ce3f58617290b579a526176dd3932

    Comments

    http: split http_header into sub functions
    Closes #17603

    Changed files

    • lib/http.c
  5. Change #232143

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 13 Jun 2025 00:32:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1cdac95e2e1022c298c1e4e551c7e8b5bd8fd5df

    Comments

    openssl: fix handling of buffered data
    `SSL_pending()` only checks if the *current* TLS packet has more data.
    There might be more data in SSL's buffers.
    
    `SSL_has_pending()` only checks if there is data in buffers, but does
    *not* check if there is a complete TLS packet that can be decoded.
    
    If we only check the first, we will poll on socket events without having
    processed all data and may stall. If we only check the second, we would
    busy loop without SSL_read() ever giving something.
    
    Add the flag `connssl->input_pending` that is set on incoming data in
    the BIO receive. Clear the flag when encountering a CURLE_AGAIN on
    the filters receive (via SSL_read()) or see an EOF.
    
    Ref: #17596
    Closes #17601

    Changed files

    • lib/pingpong.c
    • lib/vtls/openssl.c
    • lib/vtls/vtls_int.h