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

Builder curl-unthreaded-solaris10-sparc Build #13829

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiond4234d9f462a71543e0c8d903a5569b37a1ba10a
Got Revisiond4234d9f462a71543e0c8d903a5569b37a1ba10a
Changes7 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 22 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 50 mins, 58 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 13829 Build
codebase Build
got_revision d4234d9f462a71543e0c8d903a5569b37a1ba10a Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d4234d9f462a71543e0c8d903a5569b37a1ba10a 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. Anna Liberty
  2. Daniel Lublin
  3. Viktor Szakats

Timing:

StartFri Feb 20 13:01:07 2026
EndSat Feb 21 06:39:12 2026
Elapsed17 hrs, 38 mins, 5 secs

All Changes:

:

  1. Change #258158

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 19 Feb 2026 19:08:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1858126cca37f5309e2714b988f8354715c6ffad

    Comments

    cmake: sync clang-tidy arg order in tests with C compiler
    Pass macro definitions first. For uniformity, no functional difference.
    
    To match:
    ```
    CMAKE_C_COMPILE_OBJECT = '<CMAKE_C_COMPILER> <DEFINES> <INCLUDES> <FLAGS> [...]'
    ```
    
    Closes #20635

    Changed files

    • CMake/Macros.cmake
  2. Change #258295

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 12:08:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6dc5f2948cbd7ad420242faafa9e5b23cc4f409e

    Comments

    cmake: improve clang-tidy invocation for tests in cross-builds
    By passing to clang-tidy the C compiler with `--target` and sysroot
    options, if any.
    
    Fixing (GHA/windows, linux-mingw, CM clang-tidy):
    ```
    lib/curl_setup.h:841:10: error: 'io.h' file not found [clang-diagnostic-error]
      841 | #include <io.h>
          |          ^~~~~~
    Found compiler error(s).
    FAILED: [code=1] tests/server/CMakeFiles/servers-clang-tidy bld/tests/server/CMakeFiles/servers-clang-tidy
    cd tests/server && /usr/bin/clang-tidy --config-file=.clang-tidy.yml
    --warnings-as-errors=* --checks=-clang-diagnostic-unused-function first.c getpart.c util.c dnsd.c [...]
    -- <-D-options> <-I-options> <cflags>
    ```
    
    For reference, this is CMake's built-in clang-tidy invocation:
    ```
    /usr/local/bin/cmake -E __run_co_compile --tidy="/usr/bin/clang-tidy;--config-file=.clang-tidy.yml;
    --warnings-as-errors=*;--extra-arg-before=--driver-mode=gcc" --source=lib/curl_fopen.c
    -- /usr/bin/clang --target=x86_64-w64-mingw32 <-D-options> <-I-options> <cflags>
    ```
    
    Also:
    - bump cmakelint `--max-statements`. Needs 59 after this patch.
    - use undocumented CMake variables:
      - `CMAKE_C_COMPILE_OPTIONS_TARGET` for `--target=`
      - `CMAKE_C_COMPILE_OPTIONS_SYSROOT` for `--sysroot=`
    
    Cherry-picked from #20631
    
    Closes #20640

    Changed files

    • CMake/Macros.cmake
    • scripts/cmakelint.sh
  3. Change #258296

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

    Comments

    INSTALL-CMAKE.md: document more settings requiring absolute paths
    Cherry-picked from #20631
    
    Closes #20637

    Changed files

    • docs/INSTALL-CMAKE.md
  4. Change #258297

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 20 Feb 2026 12:08:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4042e7d9d8341e059dfe26276797e7296cc66518

    Comments

    clang-tidy: work around clang-tidy <=20 false positive (Windows)
    clang-tidy <= v20 (as seen between 18.1.3 and 20.1.2) report
    `readability-uppercase-literal-suffix` originating from mingw-w64 system
    header `_mingw_mac.h` via `define __MSABI_LONG(x) x ## l`
    
    Triggered by `SOCKENOMEM` (e.g. in tests/server/sockfilt.c):
    ```
    warning: integer literal has suffix 'l', which is not uppercase [readability-uppercase-literal-suffix]
    ```
    
    Work around by replacing Windows macro `WSA_NOT_ENOUGH_MEMORY`
    with its literal value.
    
    Bug: https://github.com/curl/curl/pull/20631#issuecomment-3930619868
    Follow-up to c07c3cac746bb899e8014200aad02e5f4bb507de #20629
    Cherry-picked from #20631
    
    Closes #20638

    Changed files

    • lib/curl_setup.h
  5. Change #258298

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

    Comments

    tests/server/sockfilt: check for NULL `tv` to silence clang-tidy
    A NULL dereference cannot happen with existing use of this code.
    
    linux-mingw, CM clang-tidy:
    ```
    /home/runner/work/curl/curl/tests/server/sockfilt.c:720:24: error: Access
     to field 'tv_sec' results in a dereference of a null pointer (loaded from
     variable 'tv') [clang-analyzer-core.NullDereference,-warnings-as-errors]
      720 |             tv->tv_sec = 0;
          |             ~~         ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/22191200093/job/64179197235?pr=20631#step:10:283
    
    Cherry-picked from #20631
    
    Closes #20639

    Changed files

    • tests/server/sockfilt.c
  6. Change #258299

    Category curl
    Changed by Anna Liberty <liberty.817ohnoyoudont@proton.me>
    Changed at Fri 20 Feb 2026 12:08:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3699976b7939cac7a8f3fefad12f192d0e55654d

    Comments

    docs: reword explanation of --variable option
    Simplify the language expaining the --variable option, reducing
    repetition. Also fix some minor grammar issues and makes language for
    examples more consistent.
    
    Closes #20636

    Changed files

    • docs/cmdline-opts/_VARIABLES.md
  7. Change #258310

    Category curl
    Changed by Daniel Lublin <danielohnoyoudont@lublin.se>
    Changed at Fri 20 Feb 2026 12:50:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d4234d9f462a71543e0c8d903a5569b37a1ba10a

    Comments

    docs: clarify --ipv4 and --ipv6
    Try to make the wording more clear. It is the addresses in the resolver
    result that are affected, not anything regarding *how* resolving is
    done.
    
    Closes #20585

    Changed files

    • docs/cmdline-opts/ipv4.md
    • docs/cmdline-opts/ipv6.md