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

Builder curl-unthreaded-solaris10-sparc Build #13830

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionc81309479a1fcfa18e87159f29e8be06dc3a4861
Got Revisionc81309479a1fcfa18e87159f29e8be06dc3a4861
Changes9 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 52 mins, 6 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-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13830 Build
codebase Build
got_revision c81309479a1fcfa18e87159f29e8be06dc3a4861 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision c81309479a1fcfa18e87159f29e8be06dc3a4861 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:

StartSat Feb 21 06:39:18 2026
EndSun Feb 22 01:02:15 2026
Elapsed18 hrs, 22 mins, 57 secs

All Changes:

:

  1. Change #258350

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 16:32:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dd82205bb2ecd6efe489fef1815348d0bcb033f1

    Comments

    memdebug: include `backtrace.h` as system header
    Closes #20642

    Changed files

    • lib/memdebug.c
  2. Change #258352

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 16:32:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1eb79cf54bbf4ce90d0c138a97aa535ec2f1b5b8

    Comments

    cmake: include `curl/curl.h` as system header in integration tests
    Follow-up to fb70812437ad28b74dbdc1031e46c1d86bc9db3c #16126
    
    Closes #20651

    Changed files

    • tests/cmake/test.c
  3. Change #258354

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 16:32:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4b4637a445f6338992e967db301f62cd7c7e2937

    Comments

    build: disable typecheck via the command-line instead of `curl_config.h`
    To make it apply to examples. This in turn makes analyzers run quicker
    and with fewer false positives.
    
    It's a special disable option, having its effect via `curl/curl.h`.
    
    Bug: https://github.com/curl/curl/pull/20649#issuecomment-3934885021
    Follow-up to 9e6f1c5efb7a70e1f33e467a738f3e3f652f3174 #19637
    
    Closes #20650

    Changed files

    • CMakeLists.txt
    • configure.ac
    • lib/curl_config-cmake.h.in
    • tests/test1165.pl
  4. Change #258369

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:09:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eabd452d27b599012f005c1bbec31660dbdae377

    Comments

    tests: avoid assignment in `if` conditions in `first.h`
    Found by clang-tidy `bugprone-assignment-in-if-condition`.
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/assignment-in-if-condition.html
    
    Closes #20646

    Changed files

    • tests/libtest/first.h
  5. Change #258371

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:15:49
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 947775a613f5e41e69a9a2baac7b79fc4e597544

    Comments

    libtests: drop two redundant `memset()`s
    Reported by clang-tidy `bugprone-sizeof-expression`.
    
    Silencing:
    ```
    tests/libtest/cli_h2_pausing.c:164:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      164 |   memset(&resolve, 0, sizeof(resolve));
          |                       ^
    tests/libtest/cli_upload_pausing.c:158:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      158 |   memset(&resolve, 0, sizeof(resolve));
          |                       ^
    ```
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/sizeof-expression.html
    
    Closes #20649

    Changed files

    • tests/libtest/cli_h2_pausing.c
    • tests/libtest/cli_upload_pausing.c
  6. Change #258376

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:33:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 977ac0c06cddff2b5e994ee427e947dbe68a558d

    Comments

    clang-tidy: check `misc-header-include-cycle`, fix in internal headers
    Also opt-out `curl/curl.h` because it includes `curl/mprintf.h`, which
    in turn includes `curl/curl.h` for `CURL_EXTERN`. Not changeable in
    public headers to remain compatible. (Somehow only triggered for
    examples.)
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/misc/header-include-cycle.html
    
    Closes #20645

    Changed files

    • .clang-tidy.yml
    • lib/functypes.h
    • src/tool_operate.h
    • src/tool_sdecls.h
  7. Change #258377

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 17:33:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2862cafb49ec79b69f5521e860f2fd6041a934c8

    Comments

    unit1654: fix clang-tidy `bugprone-redundant-branch-condition`
    ```
    tests/unit/unit1654.c:41:5: warning: redundant condition 'result' [bugprone-redundant-branch-condition]
       41 |     fail_if(result, "Curl_altsvc_load");
          |     ^
    tests/libtest/unitcheck.h:29:5: note: expanded from macro 'fail_if'
       29 |     if(expr) {                                                         \
          |     ^
    ```
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/redundant-branch-condition.html
    
    Closes #20648

    Changed files

    • .clang-tidy.yml
    • tests/unit/unit1654.c
  8. Change #258399

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 20 Feb 2026 23:06:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7bcf877198c980ea54f8ceac274d9753ec2849cf

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  9. Change #258404

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 21 Feb 2026 00:08:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c81309479a1fcfa18e87159f29e8be06dc3a4861

    Comments

    clang-tidy: link to main documentation page [ci skip]

    Changed files

    • .clang-tidy.yml