Builder curl-unthreaded-solaris10-sparc Build #13829
Results:
Failed runtest
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | d4234d9f462a71543e0c8d903a5569b37a1ba10a |
| Got Revision | d4234d9f462a71543e0c8d903a5569b37a1ba10a |
| Changes | 7 changes |
BuildSlave:
unstable10sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| 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:
| Name | Label | Value |
|---|
Responsible Users:
- Anna Libertyliberty.817@proton.me
- Daniel Lublindaniel@lublin.se
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Fri Feb 20 13:01:07 2026 |
| End | Sat Feb 21 06:39:12 2026 |
| Elapsed | 17 hrs, 38 mins, 5 secs |
All Changes:
:
Change #258158
Category curl Changed by Viktor Szakats <commit@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
Change #258295
Category curl Changed by Viktor Szakats <commit@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 #20640Changed files
- CMake/Macros.cmake
- scripts/cmakelint.sh
Change #258296
Category curl Changed by Viktor Szakats <commit@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
Change #258297
Category curl Changed by Viktor Szakats <commit@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
Change #258298
Category curl Changed by Viktor Szakats <commit@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 #20639Changed files
- tests/server/sockfilt.c
Change #258299
Category curl Changed by Anna Liberty <liberty.817@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
Change #258310
Category curl Changed by Daniel Lublin <daniel@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