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

Builder curl-ares-solaris10-sparc Build #3467

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 37 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 49 mins, 42 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 mins, 1 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 3467 Build
codebase Build
got_revision ba685ad5e5712fed4c3772df0372569b4e5ff428 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision ba685ad5e5712fed4c3772df0372569b4e5ff428 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. Diogo Correia
  3. Viktor Szakats

Timing:

StartTue Feb 24 13:01:18 2026
EndWed Feb 25 06:46:52 2026
Elapsed17 hrs, 45 mins, 33 secs

All Changes:

:

  1. Change #258779

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 24 Feb 2026 00:48:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 453470fab1bd2920d40af67620d24d711770fd61

    Comments

    spacecheck: double spaces in folded strings, fix fallouts
    Closes #20695

    Changed files

    • lib/http2.c
    • lib/rtsp.c
    • lib/tftp.c
    • lib/vtls/schannel.c
    • scripts/spacecheck.pl
  2. Change #258782

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 24 Feb 2026 01:11:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 67298a80b3a2d092d801a4dc4a6f115935092eec

    Comments

    INSTALL-CMAKE.md: document the `curl` build target
    Can be useful to together with `testdeps` to build all binaries.
    
    Closes #20694

    Changed files

    • docs/INSTALL-CMAKE.md
  3. Change #258792

    Category curl
    Changed by Diogo Correia <meohnoyoudont@diogotc.com>
    Changed at Tue 24 Feb 2026 08:15:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9d94b1a06620ed838ae1354b414316e5f707486a

    Comments

    docs: use dot instead of comma at end of sentences
    Some sentences incorrectly ended with a command instead of a dot.
    
    Closes #20700

    Changed files

    • docs/CONTRIBUTE.md
    • docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.md
  4. Change #258820

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 24 Feb 2026 11:18:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 956e1ae84f2fec9f027b4ce80999744326b30992

    Comments

    setopt: refuse blobs with zero length
    A blob must have a length or it will not be accepted. By enforcing the
    check here, TLS backend code can rely on the fact that the length is
    always non-zero from this point.
    
    Reported-by: aisle-research-bot
    URL: https://github.com/curl/curl/pull/20689#pullrequestreview-3846390367
    Closes #20705

    Changed files

    • lib/setopt.c
  5. Change #258821

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 24 Feb 2026 11:19:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7981594df590030e6fe01b8f44704f0cf02cf9c1

    Comments

    mbedtls: split mbed_connect_step1 into sub functions
    Increase readability. Reduce complexity.
    
    Closes #20689

    Changed files

    • lib/vtls/mbedtls.c
  6. Change #258826

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 24 Feb 2026 12:34:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ba685ad5e5712fed4c3772df0372569b4e5ff428

    Comments

    openssl: fix potential NULL dereference when loading certs (Windows)
    This could happen if the first cert to be loaded missed EKU (Enhanced
    Key Usage) data, when using native CA on Windows.
    
    Fix by skipping certs without Enhanced Key Usage data.
    
    Detected by clang-tidy:
    ```
    lib/vtls/openssl.c:2922:15: warning: Access to field 'cUsageIdentifier'
     results in a dereference of a null pointer (loaded from variable
     'enhkey_usage') [clang-analyzer-core.NullDereference]
     2922 |           if(!enhkey_usage->cUsageIdentifier) {
          |               ^
    ```
    
    Refs:
    https://learn.microsoft.com/windows/win32/secgloss/e-gly
    https://learn.microsoft.com/windows/win32/api/wincrypt/nf-wincrypt-certgetenhancedkeyusage
    https://gitlab.winehq.org/wine/wine/-/blob/wine-11.2/dlls/crypt32/cert.c?ref_type=tags#L3061-3164
    
    Assisted-by: Stefan Eissing
    
    Closes #20634

    Changed files

    • lib/vtls/openssl.c