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

Builder curl-unthreaded-solaris10-sparc Build #13833

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 18 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 48 mins, 14 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 13833 Build
codebase Build
got_revision 3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d 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. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Feb 23 13:10:01 2026
EndTue Feb 24 06:46:42 2026
Elapsed17 hrs, 36 mins, 41 secs

All Changes:

:

  1. Change #258563

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Feb 2026 19:16:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fff9905bcf7c8c1da1668213d79473865461048f

    Comments

    cmake: force-disable unity for clang-tidied build targets only
    Instead of globally disabling unity for all targets when clang-tidy is
    enabled.
    
    After this patch `CMAKE_UNITY_BUILD=ON` is honored for:
    - static libcurl when building both static and shared separately.
    - libcurlu and libcurltool internal libraries when building the test
      target.
    
    While keeping unity disabled for the libcurl build pass running
    clang-tidy, and the curl tool, also running clang-tidy.
    
    To make clang-tidy-enabled builds finish faster when unity mode is
    enabled, yet performs the same clang-tidy checks as before this patch.
    
    Effect on:
    - GHA/macos: core build: same, buils tests 5-12 seconds faster,
      with steps going down from 259 to 25.
    
      52s: https://github.com/curl/curl/actions/runs/22279958340/job/64448913325 ->
      47s: https://github.com/curl/curl/actions/runs/22279873606/job/64448710743
    
    - GHA/windows (not enabled): it'd save about 1 minute, bringing total
      time barely below 10m, still one of the slowest jobs overall.
      (#20667 is trying a way for 4x speed-up (with a drawback)).
    
      5m21s: https://github.com/curl/curl/actions/runs/22222907068/job/64284556852 ->
      4m26s: https://github.com/curl/curl/actions/runs/22281033369/job/64451601548
    
    Closes #20670

    Changed files

    • CMakeLists.txt
    • docs/INSTALL-CMAKE.md
    • lib/CMakeLists.txt
    • src/CMakeLists.txt
  2. Change #258568

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Feb 2026 20:43:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c387c9fd0c0954b0e355424150203ab28a0c6d13

    Comments

    GHA/non-native: enable FreeBSD on arm again
    Upstream package install is working again.
    
    Follow-up to 41a6eeadf6de719caf414c3520e912db989a6d43 #20267
    
    Closes #20678

    Changed files

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

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Feb 2026 22:32:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 29758a6143d6ffec41d7c6a01c359c1b9301f9ab

    Comments

    tests/server: silence clang-tidy warning
    It looks like a case that can never happen in practice.
    
    Seen on mingw-w64 with experimental concatenated (vs. #included) test
    sources:
    ```
    tests/server/util.c:662:16: error: Null pointer passed as 1st
     argument to string length function [clang-analyzer-unix.cstring.NullArg]
      662 |   size_t len = strlen(unix_socket);
          |                ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/22267482855/job/64416261156#step:10:273
    
    Closes #20668

    Changed files

    • tests/server/util.c
  4. Change #258581

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 23 Feb 2026 00:01:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57a1cc558795a4a96c27de7042a3e1634cead3f6

    Comments

    URL-SYNTAX.md: fix port number mistakes for IMAP and LDAP
    Reported-by: Augment code
    URL: https://github.com/curl/curl/pull/20673#pullrequestreview-3838139961
    Closes #20679

    Changed files

    • docs/URL-SYNTAX.md
  5. Change #258584

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 23 Feb 2026 01:00:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8415ad3c7ab69a7056daa4b39e7a0044c43f5ba

    Comments

    clang-tidy: add arg names to prototypes where missing
    Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`,
    or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`.
    
    Follow-up to c878160e9c1f7366e64299aa02540d5495c3df9c #20624
    
    Closes #20657

    Changed files

    • include/curl/curl.h
    • include/curl/multi.h
    • include/curl/urlapi.h
    • lib/curl_addrinfo.h
    • lib/curl_share.h
    • lib/formdata.h
    • lib/hash.h
    • lib/http.h
    • lib/llist.h
    • lib/multiif.h
    • src/slist_wc.h
  6. Change #258623

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 23 Feb 2026 10:23:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d

    Comments

    openssl: fix compiler warning with OpenSSL master
    vtls/openssl.c:469:15: error: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
    
    X509_get_X509_PUBKEY() now returns a const pointer - but only on OpenSSL
    3, we must keep the non-const version for all forks.
    
    Closes #20681

    Changed files

    • lib/vtls/openssl.c