Builder curl-threaded-solaris11-i386 Build #4692
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | b1f853a3849d0e8116ae4e2aedfb9ca65f92282d |
| Got Revision | b1f853a3849d0e8116ae4e2aedfb9ca65f92282d |
| Changes | 5 changes |
BuildSlave:
unstable11xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-i386' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-threaded-solaris11-i386 | slave |
| buildername | curl-threaded-solaris11-i386 | Builder |
| buildnumber | 4692 | Build |
| codebase | Build | |
| got_revision | b1f853a3849d0e8116ae4e2aedfb9ca65f92282d | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | b1f853a3849d0e8116ae4e2aedfb9ca65f92282d | Build |
| scheduler | schedule-curl-threaded-solaris11-i386 | Scheduler |
| slavename | unstable11x | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-threaded-solaris11-i386 | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Thu Feb 26 04:37:33 2026 |
| End | Thu Feb 26 07:07:27 2026 |
| Elapsed | 2 hrs, 29 mins, 54 secs |
All Changes:
:
Change #258966
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 01:36:16 Repository https://github.com/curl/curl.git Project curl Branch master Revision b56e103d4d223a722a00cd76846cbbff191f7d90 Comments
build: do not include wolfSSL header in `curl_setup.h` To fix building tests/server with cmake and both wolfSSL and OpenSSL enabled (MultiSSL). tests/server do not have libcurl dependency header paths setup because it does not use libcurl. The code however includes `curl_setup.h`, which tried including `wolfssl/version.h` before this patch to verify if the wolfSSL coexist feature is available. Without a header path, it failed: ``` In file included from bld/tests/server/servers.c:3: In file included from tests/server/first.h:40: lib/curl_setup.h:737:12: fatal error: 'wolfssl/version.h' file not found 737 | # include <wolfssl/version.h> | ^~~~~~~~~~~~~~~~~~~ 1 error generated. ``` Ref: https://github.com/curl/curl/actions/runs/22410066319/job/64880787424#step:46:76 Fix by moving the include and version check to `vtls/wolfssl.c`. Also: add an early version check to cmake. Follow-up to 16f073ef49f94412000218c9f6ad04e3fd7e4d01 #16973 Cherry-picked from #20720 Closes #20726Changed files
- CMakeLists.txt
- lib/curl_setup.h
- lib/vtls/wolfssl.c
Change #258972
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 02:44:39 Repository https://github.com/curl/curl.git Project curl Branch master Revision 2239879b746c2c1c8dd087cffbef974ec2c780f8 Comments
cmake: minor fixes to test targets after prev - run tests-clang-tidy when building testbins. - drop redundant build-certs dependency for test targets. Already present via testdeps. Follow-up to aae361242f30eafacf46085ed731b1524bfd3be9 #20708 Closes #20727
Changed files
- tests/CMakeLists.txt
Change #258975
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 03:09:16 Repository https://github.com/curl/curl.git Project curl Branch master Revision d110504e84016d3031a3ad1fa3421f22e2d0aaec Comments
build: add missing `GENERATEDCERTS` files Also alpha sort lists, while here. Follow-up to 2cf19c245eff8ff84e53d6edc27d36bf25439d1b #17493 Closes #20728
Changed files
- tests/certs/Makefile.inc
Change #258985
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 04:19:18 Repository https://github.com/curl/curl.git Project curl Branch master Revision d38bf7949d3acf5b484187fd3e81e0bd33b56715 Comments
tests/server: fix to clear the complete `srvr_sockaddr_union_t` variable Reported by clang-tidy (seen on Linux with v18, v19, v20, not on macOS): ``` tests/server/dnsd.c:552:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/dnsd.c:556:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/rtspd.c:1183:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/rtspd.c:1187:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/sws.c:2235:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/sws.c:2239:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/tftpd.c:1188:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/tftpd.c:1192:14: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/util.c:860:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] tests/server/util.c:864:21: error: 1st function call argument is an uninitialized value [clang-analyzer-core.CallAndMessage] ``` Ref: https://github.com/curl/curl/actions/runs/22424827575/job/64930560425?pr=20725 Cherry-picked from #20725 Closes #20730
Changed files
- tests/server/dnsd.c
- tests/server/rtspd.c
- tests/server/sws.c
- tests/server/tftpd.c
- tests/server/util.c
Change #258986
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Thu 26 Feb 2026 04:19:18 Repository https://github.com/curl/curl.git Project curl Branch master Revision b1f853a3849d0e8116ae4e2aedfb9ca65f92282d Comments
unit3205: suppress two clang-tidy false positives Silencing: ``` tests/unit/unit3205.c:565:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result] 565 | expect = (const char *)memcpy(alt, "DHE-", 4); | ^~~~~~ ~~~ | strcpy tests/unit/unit3205.c:569:32: error: the result from calling 'memcpy' is not null-terminated [bugprone-not-null-terminated-result] 569 | expect = (const char *)memcpy(alt + 4, "DHE-", 4) - 4; | ^~~~~~ ~~~ | strcpy ``` Ref: https://github.com/curl/curl/actions/runs/22425366818/job/64932197466?pr=20725 Cherry-picked from #20725 Closes #20731Changed files
- tests/unit/unit3205.c