Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-unthreaded-solaris10-sparc Build #13774

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision5225e69ed92d766dc140efa29af43cd12d97b03d
Got Revision5225e69ed92d766dc140efa29af43cd12d97b03d
Changes10 changes

BuildSlave:

unstable10s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 47 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 54 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13774 Build
codebase Build
got_revision 5225e69ed92d766dc140efa29af43cd12d97b03d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 5225e69ed92d766dc140efa29af43cd12d97b03d 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:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats
  3. renovate[bot]

Timing:

StartSun Jan 11 00:56:43 2026
EndSun Jan 11 19:00:44 2026
Elapsed18 hrs, 4 mins, 1 secs

All Changes:

:

  1. Change #254722

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 12:36:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 88060353440df4e1b7167c180b39074fd2ab457a

    Comments

    GHA/linux: fix 'libressl' internal name confusion
    `libressl-filc` was matching `contains()` expressions looking for
    `libressl`, causing build confusion and failure in specific cases.
    
    Rename `libressl` to `libressl-c` to avoid this. Also rename the cache
    id for consistency, though not necessary for the fix.
    
    Bug: https://github.com/curl/curl/actions/runs/20860412340/job/59938315276
    Follow-up to c2624818739916652a041164939afaba5bb5ee73 #19407
    Cherry-picked from #20234
    
    Closes #20240

    Changed files

    • .github/workflows/linux.yml
  2. Change #254724

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 10 Jan 2026 12:40:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0159100f4f782432fa3d27998dbea7b827ffba2d

    Comments

    lib: use (u)int64_t instead of long long
    Remove config-plan9.h because it does not support 64 bit, meaning it has
    not been working for years.
    
    Closes #20233

    Changed files

    • .github/scripts/cmp-config.pl
    • CMake/unix-cache.cmake
    • CMakeLists.txt
    • configure.ac
    • lib/Makefile.am
    • lib/config-mac.h
    • lib/config-os400.h
    • lib/config-plan9.h
    • lib/config-riscos.h
    • lib/config-win32.h
    • lib/curl_config-cmake.h.in
    • lib/mprintf.c
    • lib/sha256.c
    • m4/curl-wolfssl.m4
    • packages/vms/config_h.com
    • tests/libtest/testutil.c
  3. Change #254730

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Sat 10 Jan 2026 12:50:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f1422960bf345d6958a60673931d8bff049cbc06

    Comments

    GHA: update awslabs/aws-lc to v1.66.2
    Closes #20238

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  4. Change #254732

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 10 Jan 2026 13:05:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3e1179a695528fa31161d348e5ca68b1ab3845e1

    Comments

    KNOWN_BUGS.md: absolute Unix domain filename for SOCKS on Windows
    Closes #20236
    Closes #19825

    Changed files

    • docs/KNOWN_BUGS.md
  5. Change #254734

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 13:21:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2465f7c61da0beea79707449dd712ad6edbc38d0

    Comments

    tool: improve error/warning messages when output filename sanitization fails
    On MS-DOS (OOM and bad filename) and Windows (OOM only).
    
    Given the rarity of both platform and error, we make a compromise and
    return an unrelated libcurl error (43) in case of a bad output filename
    on MS-DOS.
    
    After:
    ```
    $ CURL_FN_SANITIZE_OOM=1 wine curl.exe https://curl.se/ --output out.txt
    curl: (27) Out of memory
    
    $ CURL_FN_SANITIZE_BAD=1 wine curl.exe https://curl.se/ --output out.txt
    Warning: bad output filename
    curl: (43) A libcurl function was given a bad argument
    
    $ CURL_FN_SANITIZE_OOM=1 wine curl.exe https://curl.se/index.html --globoff -O
    curl: (27) Out of memory
    
    $ CURL_FN_SANITIZE_BAD=1 wine curl.exe https://curl.se/index.html --globoff -O
    curl: bad output filename
    curl: (43) A libcurl function was given a bad argument
    ```
    
    Before:
    ```
    $ CURL_FN_SANITIZE_OOM=1 wine curl.exe https://curl.se/ --output out.txt
    Warning: bad output glob
    curl: (27) Out of memory
    
    $ CURL_FN_SANITIZE_BAD=1 wine curl.exe https://curl.se/ --output out.txt
    Warning: bad output glob
    curl: (3) URL using bad/illegal format or missing URL
    
    $ CURL_FN_SANITIZE_OOM=1 wine curl.exe https://curl.se/index.html --globoff -O
    curl: Failed to extract a filename from the URL to use for storage
    curl: (27) Out of memory
    
    $ CURL_FN_SANITIZE_BAD=1 wine curl.exe https://curl.se/index.html --globoff -O
    curl: Failed to extract a filename from the URL to use for storage
    curl: (3) URL using bad/illegal format or missing URL
    ```
    
    Ref: #20116 (simpler reboot of)
    Ref: #20113 #20121
    Ref: 40c1748af503cf54443e17db5f537b548faa9328 #20198
    Ref: eb7f5b71e5b3fe1e73f6065c78ad0143ff580916 #20143
    Ref: 8c02407bef55baaee8d721a7e5f7f0ba8d91dd47 #20125
    Fixes #20044
    Closes #20199

    Changed files

    • src/tool_doswin.c
    • src/tool_doswin.h
    • src/tool_operate.c
    • src/tool_operhlp.c
    • src/tool_operhlp.h
    • src/tool_sdecls.h
    • src/tool_urlglob.c
    • src/tool_urlglob.h
  6. Change #254744

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 17:39:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f4b16563ab74abe3dde89a64ba911fc68bb92934

    Comments

    cmake: drop unused `LONG_LONG` reference from Windows prefills
    It's no longer used in curl.
    
    Follow-up to 0159100f4f782432fa3d27998dbea7b827ffba2d #20233
    
    Closes #20241

    Changed files

    • CMake/win32-cache.cmake
  7. Change #254752

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 10 Jan 2026 22:42:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7433a6eb3f9829da4e5e37a70eefca621797794f

    Comments

    urldata: restore bitfield to unsigned int
    Bug: https://github.com/curl/curl/pull/20209#pullrequestreview-3647160739
    
    Reported-by: Patrick Monnerat
    Follow-up to e3691612ea1acb2
    Closes #20244

    Changed files

    • lib/urldata.h
  8. Change #254758

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 23:03:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bfacfb23557b0b148733202831d5ab9384152e29

    Comments

    plan9: drop special build and orphaned references
    Would need 64-bit support.
    
    Ref: https://github.com/curl/curl/pull/20233#issuecomment-3732556015
    Follow-up to 0159100f4f782432fa3d27998dbea7b827ffba2d #20233
    
    Closes #20243

    Changed files

    • .github/labeler.yml
    • .github/scripts/spacecheck.pl
    • .github/workflows/checksrc.yml
    • .github/workflows/codeql.yml
    • .github/workflows/curl-for-win.yml
    • .github/workflows/fuzz.yml
    • .github/workflows/http3-linux.yml
    • .github/workflows/linux-old.yml
    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
    • Makefile.am
    • REUSE.toml
    • appveyor.yml
    • lib/curl_setup.h
    • plan9/README
    • plan9/include/mkfile
    • plan9/lib/mkfile
    • plan9/lib/mkfile.inc
    • plan9/mkfile
    • plan9/mkfile.proto
    • plan9/src/mkfile
    • plan9/src/mkfile.inc
  9. Change #254759

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 23:03:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ff78af5752fdf580e5beef743f932cc1625228c3

    Comments

    GHA: include runner CPU arch in cache keys
    To clarify the arch for cache entries, also to allow building/caching
    multiple archs in parallel if necessary.
    
    Closes #20234

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  10. Change #254775

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 10 Jan 2026 23:43:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5225e69ed92d766dc140efa29af43cd12d97b03d

    Comments

    GHA/linux: move 6 jobs with locally built dependencies to arm
    All libresll jobs, wolfssl-all, and one mbedtls job.
    
    As noted earlier, arm jobs run faster than intel ones, especially
    valgrind steps that run almost twice as fast. Package install runs
    slower, but this is offset by faster build and test steps, even in
    non-valgrind jobs.
    
    Follow-up to ff78af5752fdf580e5beef743f932cc1625228c3 #20234
    Follow-up to 2b0d8dcc16c531d3154ab54347a3eaabf9bd2c7d #20231
    
    Closes #20246

    Changed files

    • .github/workflows/linux.yml