Builder curl-ares-solaris10-sparc Build #3400
Results:
Failed runtest
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | bb7f69f9a2b8aeb9cafb48ac269e93244a0f035e |
| Got Revision | bb7f69f9a2b8aeb9cafb48ac269e93244a0f035e |
| Changes | 5 changes |
BuildSlave:
unstable10sReason:
The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris10-sparc' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc | slave |
| buildername | curl-ares-solaris10-sparc | Builder |
| buildnumber | 3400 | Build |
| codebase | Build | |
| got_revision | bb7f69f9a2b8aeb9cafb48ac269e93244a0f035e | Git |
| osplatform | SPARC | SetPropertyFromCommand Step |
| osrelease | 10 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | bb7f69f9a2b8aeb9cafb48ac269e93244a0f035e | Build |
| scheduler | schedule-curl-ares-solaris10-sparc | Scheduler |
| slavename | unstable10s | BuildSlave |
| workdir | /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Thu Jan 8 04:13:39 2026 |
| End | Thu Jan 8 16:52:41 2026 |
| Elapsed | 12 hrs, 39 mins, 2 secs |
All Changes:
:
Change #254439
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 07 Jan 2026 16:28:30 Repository https://github.com/curl/curl.git Project curl Branch master Revision e70436a88a7ba16f6a49237054dde41f181fd9c4 Comments
lib: sync printf masks with `uint32_t` types Also adjust a printf mask for signedness. Fixing with MS-DOS DJGPP gcc 12.2.0: ``` lib/conncache.c:612:22: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:394:22: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:520:20: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:520:20: error: format '%u' expects argument of type 'unsigned int', but argument 5 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:611:20: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:614:22: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:887:20: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:887:20: error: format '%u' expects argument of type 'unsigned int', but argument 5 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:2719:26: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:2725:30: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:2729:28: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:3126:34: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:3348:34: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi.c:3991:28: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ev.c:343:24: error: format '%u' expects argument of type 'unsigned int', but argument 6 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ev.c:413:24: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ev.c:584:36: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ntfy.c:113:34: error: format '%d' expects argument of type 'int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ntfy.c:113:34: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t' {aka 'long unsigned int'} lib/multi_ntfy.c:171:22: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t' {aka 'long unsigned int'} lib/url.c:883:22: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} lib/url.c:889:22: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'uint32_t' {aka 'long unsigned int'} ``` Bug: https://github.com/curl/curl/pull/20199#discussion_r2666363334 Follow-up to 4c9e4e99c107b8d0bda5b204c5b69a50425567b9 #20208 Closes #20200Changed files
- lib/conncache.c
- lib/multi.c
- lib/multi_ev.c
- lib/multi_ntfy.c
- lib/url.c
Change #254445
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 07 Jan 2026 17:01:06 Repository https://github.com/curl/curl.git Project curl Branch master Revision 8881a52ab0bc7f8cdaad3161e189570d69f0cd3c Comments
tests: fix to use `uint32_t` where necessary Fixes MS-DOS DJGPP buidls, possibly others. Follow-up to e70436a88a7ba16f6a49237054dde41f181fd9c4 #20200 Follow-up to 4701a6d2ae9f0b66a0feac4061868e944353449b #19695 Closes #20210
Changed files
- tests/unit/unit1616.c
- tests/unit/unit3211.c
- tests/unit/unit3212.c
- tests/unit/unit3213.c
Change #254452
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 07 Jan 2026 17:07:40 Repository https://github.com/curl/curl.git Project curl Branch master Revision 1b9f1c2086d2d8db73e6a0d953d872e723952dce Comments
GHA/non-native: restore MS-DOS jobs In `!ssl` variant. It's useful to catch `uint32_t` mismatches with `unsigned int` or its printf mask. Also add Renovate version bump rule. It takes about 1m (autotools) + 30s (cmake) in CI. Bug: https://github.com/curl/curl/pull/20199#discussion_r2666363334 Follow-up to 8881a52ab0bc7f8cdaad3161e189570d69f0cd3c #20210 Follow-up to e70436a88a7ba16f6a49237054dde41f181fd9c4 #20200 Follow-up to 0630e66cb4044892ec137c3357852fe025746f35 #18338 Closes #20204
Changed files
- .github/workflows/non-native.yml
Change #254455
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 07 Jan 2026 17:34:57 Repository https://github.com/curl/curl.git Project curl Branch master Revision d8f6175edcb1588110282a4e3877abe12c1f127f Comments
GHA/macos: switch one H3 pytest job to cmake To: - see if build tool makes a difference for flaky 8x pytest slowdowns. - to make this job finished faster. `curl -V`, number of runtests (1793) and pytests (568/159) verified to remain the same. Closes #20211
Changed files
- .github/workflows/macos.yml
Change #254488
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 07 Jan 2026 22:59:52 Repository https://github.com/curl/curl.git Project curl Branch master Revision bb7f69f9a2b8aeb9cafb48ac269e93244a0f035e Comments
tool_dirhie: drop superfluous `F_OK` fallback (Windows) Follow-up to cb5ba675a73e7ef9e8ea0ce913bf15ba63f87d1f Closes #20214
Changed files
- src/tool_dirhie.c