Builder curl-unthreaded-solaris10-i386 Build #16699
Results:
Failed runtest
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | f3c11692a9881b2d74263e20749ff58da1fd8443 |
| Got Revision | f3c11692a9881b2d74263e20749ff58da1fd8443 |
| Changes | 4 changes |
BuildSlave:
unstable10xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-i386' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 | slave |
| buildername | curl-unthreaded-solaris10-i386 | Builder |
| buildnumber | 16699 | Build |
| codebase | Build | |
| got_revision | f3c11692a9881b2d74263e20749ff58da1fd8443 | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 10 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | f3c11692a9881b2d74263e20749ff58da1fd8443 | Build |
| scheduler | schedule-curl-unthreaded-solaris10-i386 | Scheduler |
| slavename | unstable10x | BuildSlave |
| workdir | /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Daniel Stenbergdaniel@haxx.se
- Stefan Eissingstefan@eissing.org
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Mon Jun 29 14:12:41 2026 |
| End | Mon Jun 29 23:50:07 2026 |
| Elapsed | 9 hrs, 37 mins, 26 secs |
All Changes:
:
Change #273153
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 29 Jun 2026 11:11:16 Repository https://github.com/curl/curl.git Project curl Branch master Revision 1671ebd975c1f146b0dd9929fa4c2a3f8d39b305 Comments
build: drop superfluous `STDC_HEADERS` macro It is traditionally defined by autotools to detect the presence of set of standard C89 headers. autoconf 2.70 (2020-12-08) reduced the headers covered to `stdlib.h`, `string.h`. After 2.59d (2006-06-05) obsoleting it earlier. CMake replicated this detection, and curl included `curl/stdcheaders.h` if standard headers were missing. However, such condition could never happen because curl sources already assume all checked standard headers (`stdarg.h`, `stdlib.h`, `string.h`) and include them unconditionally. Since this is an unused feature detection and an impossible fallback path, drop them from CMake and curl's source. autotools continues to do the detection by default, but its result is unused after this patch. This leaves public `curl/stdcheaders.h` unused from within the codebase. Refs: https://github.com/autotools-mirror/autoconf/commit/f0c7c425539964047b0cb986d2ea5f5687a07069 https://github.com/autotools-mirror/autoconf/commit/86c213d0e355296f026a36e3203c0813041aae89 Follow-up to 65dae4ad80b02f25a25e17af62ea4f2940970330 #22191 Follow-up to 4c5307b45655ba75ab066564afdc0c111a8b9291 Ref: ae1912cb0d494b48d514d937826c9fe83ec96c4d Closes #22206
Changed files
- .github/scripts/cmp-config.pl
- CMake/CurlTests.c
- CMake/unix-cache.cmake
- CMake/win32-cache.cmake
- CMakeLists.txt
- lib/config-os400.h
- lib/config-win32.h
- lib/curl_config-cmake.h.in
- lib/curl_setup.h
- projects/vms/config_h.com
Change #273158
Category curl Changed by Stefan Eissing <stefan@eissing.org> Changed at Mon 29 Jun 2026 11:17:00 Repository https://github.com/curl/curl.git Project curl Branch master Revision d647b84d53b5ba14ce82b0759c70e962a423c1a4 Comments
CREDENTIALS.md: remove comment about emtpy user/pass Closes #22212
Changed files
- docs/internals/CREDENTIALS.md
Change #273178
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Mon 29 Jun 2026 14:27:56 Repository https://github.com/curl/curl.git Project curl Branch master Revision c9d8a6bc1084cae8b9f63a504bdfc7c00230f4ff Comments
mod_curltest: fix compiler warnings ``` mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare] 331 | if(chunk_size >= 0) { | ~~~~~~~~~~ ^ ~ mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow] 421 | int i, hd_len = (16 * 1024); | ^ mod_curltest.c:288:7: note: previous declaration is here 288 | int i, chunks = 3, error_bucket = 1; | ^ mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat] 500 | "error_handler: request cleanup, r->status=%d, aborted=%d, " | ~~ | %u 501 | "close=%d", r->status, c->aborted, close_conn); | ^~~~~~~~~~ mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers] 837 | }; | ^ mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat] 914 | char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec); | ~~ ^~~~~~~~~~~~~~~~~~~~~ | %ld mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable] 956 | apr_status_t rv; | ^~ ``` Closes #22214Changed files
- tests/http/testenv/mod_curltest/mod_curltest.c
Change #273179
Category curl Changed by Daniel Stenberg <daniel@haxx.se> Changed at Mon 29 Jun 2026 14:34:34 Repository https://github.com/curl/curl.git Project curl Branch master Revision f3c11692a9881b2d74263e20749ff58da1fd8443 Comments
CURLOPT_SSH_*_KEYFILE: used for setting up, then no more So changing them after the connection is made still allows libcurl to reuse the existing connections. Reported-by: Bigtang on hackerone Closes #22211
Changed files
- docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.md
- docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.md