Builder curl-unthreaded-solaris10-sparc Build #13834
Results:
Failed runtest
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 67298a80b3a2d092d801a4dc4a6f115935092eec |
| Got Revision | 67298a80b3a2d092d801a4dc4a6f115935092eec |
| Changes | 10 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 | 13834 | Build |
| codebase | Build | |
| got_revision | 67298a80b3a2d092d801a4dc4a6f115935092eec | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 10 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 67298a80b3a2d092d801a4dc4a6f115935092eec | 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:
- Daniel Stenbergdaniel@haxx.se
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Tue Feb 24 06:46:50 2026 |
| End | Wed Feb 25 00:54:58 2026 |
| Elapsed | 18 hrs, 8 mins, 8 secs |
All Changes:
:
Change #258683
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 13:56:59 Repository https://github.com/curl/curl.git Project curl Branch master Revision d6d8a1a15aefdc4c17aecd35f9e6eb55838e2025 Comments
cmake: always build curlu and curltool test libs in unity mode To speed up building/running tests by default (e.g. via `testdeps` or `tests` targets.) It reduces build commands to 21 (from 239) for a test build. In CI, it affects build test step times as below: - GHA/linux: aws-lc 12s https://github.com/curl/curl/actions/runs/22279958343/job/64448913413 -> 6s https://github.com/curl/curl/actions/runs/22282767915/job/64455970302 - GHA/linux: Fil-C 39s https://github.com/curl/curl/actions/runs/22279958343/job/64448913430 -> 37s https://github.com/curl/curl/actions/runs/22282767915/job/64455970352 - GHA/non-native: FreeBSD Intel 22s https://github.com/curl/curl/actions/runs/22279958335/job/64448913514 -> 15s https://github.com/curl/curl/actions/runs/22282767899/job/64455969960 - GHA/windows: dl-mingw 6.4.0 23s https://github.com/curl/curl/actions/runs/22279958334/job/64448917225 -> 9s https://github.com/curl/curl/actions/runs/22282767922/job/64455975006 Follow-up to fff9905bcf7c8c1da1668213d79473865461048f #20670 Closes #20677
Changed files
- lib/CMakeLists.txt
- src/CMakeLists.txt
Change #258684
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 13:56:59 Repository https://github.com/curl/curl.git Project curl Branch master Revision ee9b000438bd6e4cecc8a933804397a55ad0f7b8 Comments
curl/curl.h: revert to recursive macros to keep supporting C++ use-case To avoid breaking 3rd-party code reusing these symbols as C++ methods, e.g. in CMake sources: ``` cmake/src/v4.0.0-b30653ae0c.clean/Source/cmCurl.cxx:119:24: error: expected unqualified-id 119 | ::CURLcode res = ::curl_easy_setopt(curl, CURLOPT_CAINFO, cafile.c_str()); | ^ ``` Also expand comment to highlight the case. Reported-by: Kai Pastor Bug: https://github.com/curl/curl/commit/daa6b27b4d998d62c8198b4fe167199cc7bf0064#r177869049 Reported-by: Marcel Raad Bug: https://curl.se/mail/lib-2026-02/0020.html Fixes #20682 Follow-up to daa6b27b4d998d62c8198b4fe167199cc7bf0064 #20597 Closes #20686Changed files
- CMake/PickyWarnings.cmake
- include/curl/curl.h
- m4/curl-compilers.m4
Change #258693
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 14:43:37 Repository https://github.com/curl/curl.git Project curl Branch master Revision 6ad50dc2859e9ea764aafe51b34d430a663fb1d3 Comments
cmake: add C++ integration test Also: - include code to verify a C++-specific public header regression reported in 8.19.0-rc2. - curl/curl.h: mention C++ global namespace in comment. - GHA/dist: add CI job for C++. Runtime: 15 seconds. Follow-up to ee9b000438bd6e4cecc8a933804397a55ad0f7b8 #20686 Ref: #20682 Closes #20687
Changed files
- .github/workflows/distcheck.yml
- Makefile.am
- include/curl/curl.h
- tests/cmake/CMakeLists.txt
- tests/cmake/test.c
- tests/cmake/test.cpp
Change #258709
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 16:00:42 Repository https://github.com/curl/curl.git Project curl Branch master Revision 3058ed3df873c21ebba2007c3b12ed9f37558bfe Comments
lib: use lib source directory as base include path Backtrack on previous change that aimed to solve the wrong `share.h` being included. It turns out it did not fix this issue. At the same time it introduced relative header filenames and the need to include the same headers differently depending on the source files' location, reducing readability and editability. Replace this method by re-adding curl's lib source directory to the header path and addressing headers by the their full, relative name to that base directory. Aligning with this method already used in src and tests. With these advantages: - makes includes easier to read, recognize, grep, sort, write, and copy between sources, - syncs the way these headers are included across curl components, - avoids the ambiguity between system `schannel.h`, `rustls.h` vs. local headers using the same names in `lib/vtls`, - silences clang-tidy `readability-duplicate-include` checker, which detects the above issue, Ref: https://clang.llvm.org/extra/clang-tidy/checks/readability/duplicate-include.html - possibly silences TIOBE coding standard warnings: `6.10.2.a: Don't use relative paths in #include statements.` - long shot: it works well with concatenated test sources, for clang-tidy-friendly custom unity builds. Ref: #20667 Slight downside: it's not enforced. If there happens to be a collision between a local `lib/*.h` header and a system one, the solution is to rename (possibly with its `.c` counterpart) into the `curl_` namespace. This is also the method used by curl in the past. Also: - curlx/inet_pton: reduce scope of an include. - toolx/tool_time: apply this to an include, and update VS project files accordingly. Also dropping unnecessary lib/curlx header path. - clang-tidy: enable `readability-duplicate-include`. Follow-up to 3887069c661b40e76b053a4867eb565d4761ab3e #19676 Follow-up to 625f2c1644da58b9617479775badea21f125ce6d #16991 #16949 Closes #20623
Changed files
- .clang-tidy.yml
- lib/CMakeLists.txt
- lib/Makefile.am
- lib/curlx/base64.c
- lib/curlx/basename.c
- lib/curlx/basename.h
- lib/curlx/curlx.h
- lib/curlx/dynbuf.c
- lib/curlx/fopen.c
- lib/curlx/fopen.h
- lib/curlx/inet_ntop.c
- lib/curlx/inet_ntop.h
- lib/curlx/inet_pton.c
- lib/curlx/inet_pton.h
- lib/curlx/multibyte.c
- lib/curlx/multibyte.h
- lib/curlx/nonblock.c
- lib/curlx/strcopy.c
- lib/curlx/strdup.c
- lib/curlx/strdup.h
- lib/curlx/strerr.c
- lib/curlx/strparse.c
- lib/curlx/strparse.h
- lib/curlx/timediff.c
- lib/curlx/timediff.h
- lib/curlx/timeval.c
- lib/curlx/timeval.h
- lib/curlx/version_win32.c
- lib/curlx/version_win32.h
- lib/curlx/wait.c
- lib/curlx/wait.h
- lib/curlx/warnless.c
- lib/curlx/winapi.c
- lib/vauth/cleartext.c
- lib/vauth/cram.c
- lib/vauth/digest.c
- lib/vauth/digest.h
- lib/vauth/digest_sspi.c
- lib/vauth/gsasl.c
- lib/vauth/krb5_gssapi.c
- lib/vauth/krb5_sspi.c
- lib/vauth/ntlm.c
- lib/vauth/ntlm_sspi.c
- lib/vauth/oauth2.c
- lib/vauth/spnego_gssapi.c
- lib/vauth/spnego_sspi.c
- lib/vauth/vauth.c
- lib/vauth/vauth.h
- lib/vquic/curl_ngtcp2.c
- lib/vquic/curl_ngtcp2.h
- lib/vquic/curl_quiche.c
- lib/vquic/curl_quiche.h
- lib/vquic/vquic-tls.c
- lib/vquic/vquic-tls.h
- lib/vquic/vquic.c
- lib/vquic/vquic.h
- lib/vquic/vquic_int.h
- lib/vssh/libssh.c
- lib/vssh/libssh2.c
- lib/vssh/ssh.h
- lib/vssh/vssh.c
- lib/vssh/vssh.h
- lib/vtls/apple.c
- lib/vtls/apple.h
- lib/vtls/cipher_suite.c
- lib/vtls/cipher_suite.h
- lib/vtls/gtls.c
- lib/vtls/gtls.h
- lib/vtls/hostcheck.c
- lib/vtls/hostcheck.h
- lib/vtls/keylog.c
- lib/vtls/keylog.h
- lib/vtls/mbedtls.c
- lib/vtls/mbedtls.h
- lib/vtls/openssl.c
- lib/vtls/openssl.h
- lib/vtls/rustls.c
- lib/vtls/rustls.h
- lib/vtls/schannel.c
- lib/vtls/schannel.h
- lib/vtls/schannel_int.h
- lib/vtls/schannel_verify.c
- lib/vtls/vtls.c
- lib/vtls/vtls.h
- lib/vtls/vtls_int.h
- lib/vtls/vtls_scache.c
- lib/vtls/vtls_scache.h
- lib/vtls/vtls_spack.c
- lib/vtls/vtls_spack.h
- lib/vtls/wolfssl.c
- lib/vtls/wolfssl.h
- lib/vtls/x509asn1.c
- lib/vtls/x509asn1.h
- projects/Windows/tmpl/curl.vcxproj
- src/toolx/tool_time.c
Change #258716
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 23 Feb 2026 16:45:37 Repository https://github.com/curl/curl.git Project curl Branch master Revision e9786038d6ca664a6268df32c8db11a8276f28db Comments
setopt: make setopt_copypostfields a separate function Closes #20688
Changed files
- lib/setopt.c
Change #258722
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 17:03:01 Repository https://github.com/curl/curl.git Project curl Branch master Revision f1cee1f18a0c817810117a08ae146c1d57bb8303 Comments
clang-tidy: add arg names to prototypes where missing (cont.) Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`, or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`. Seen on Windows. Follow-up to e8415ad3c7ab69a7056daa4b39e7a0044c43f5ba #20657 Follow-up to c878160e9c1f7366e64299aa02540d5495c3df9c #20624 Closes #20693
Changed files
- lib/curlx/inet_pton.h
Change #258724
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 23 Feb 2026 17:22:26 Repository https://github.com/curl/curl.git Project curl Branch master Revision 29bca12978f3adebe33b63c18aa3c3fe6439381a Comments
ftp: split ftp_state_use_port into sub functions For readability and reduced complexity. Fixed a bug when FTPPORT specifies an IPv6-address only, without brackets. Closes #20685
Changed files
- lib/ftp.c
Change #258734
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 23 Feb 2026 18:57:40 Repository https://github.com/curl/curl.git Project curl Branch master Revision 65262be0ab08b7c696ed127adf207b1b0e6d006d Comments
clang-tidy: enable `readability-math-missing-parentheses`, adjust code No functional changes. Also: - md4, md5: drop redundant parentheses from macro values. Closes #20691
Changed files
- .clang-tidy.yml
- lib/cf-h1-proxy.c
- lib/curl_ntlm_core.c
- lib/curlx/base64.c
- lib/curlx/strparse.c
- lib/curlx/timeval.c
- lib/escape.c
- lib/ftp.c
- lib/hmac.c
- lib/http.c
- lib/http_aws_sigv4.c
- lib/md4.c
- lib/md5.c
- lib/mime.c
- lib/parsedate.c
- lib/pop3.c
- lib/smb.c
- lib/urlapi.c
- lib/vauth/digest.c
- lib/vauth/ntlm.c
- lib/vquic/curl_ngtcp2.c
- lib/vtls/keylog.c
- lib/vtls/mbedtls.c
- lib/vtls/x509asn1.c
- src/tool_cb_prg.c
- src/tool_getparam.c
- src/tool_operate.c
- src/tool_paramhlp.c
- src/tool_setopt.c
- src/tool_urlglob.c
- tests/libtest/first.c
- tests/libtest/lib530.c
- tests/libtest/lib582.c
- tests/libtest/lib597.c
- tests/libtest/lib666.c
- tests/libtest/lib758.c
- tests/server/rtspd.c
- tests/server/socksd.c
- tests/server/sws.c
- tests/unit/unit1309.c
Change #258779
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Tue 24 Feb 2026 00:48:12 Repository https://github.com/curl/curl.git Project curl Branch master Revision 453470fab1bd2920d40af67620d24d711770fd61 Comments
spacecheck: double spaces in folded strings, fix fallouts Closes #20695
Changed files
- lib/http2.c
- lib/rtsp.c
- lib/tftp.c
- lib/vtls/schannel.c
- scripts/spacecheck.pl
Change #258782
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Tue 24 Feb 2026 01:11:17 Repository https://github.com/curl/curl.git Project curl Branch master Revision 67298a80b3a2d092d801a4dc4a6f115935092eec Comments
INSTALL-CMAKE.md: document the `curl` build target Can be useful to together with `testdeps` to build all binaries. Closes #20694
Changed files
- docs/INSTALL-CMAKE.md