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

Builder curl-unthreaded-solaris10-sparc Build #13773

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision97f518e19342d60468c2e8b1b3ce735d4f132652
Got Revision97f518e19342d60468c2e8b1b3ce735d4f132652
Changes7 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 57 mins, 24 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 13773 Build
codebase Build
got_revision 97f518e19342d60468c2e8b1b3ce735d4f132652 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 97f518e19342d60468c2e8b1b3ce735d4f132652 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. Joshua Vandaƫle
  3. Stefan Eissing
  4. Viktor Szakats
  5. renovate[bot]

Timing:

StartSat Jan 10 06:57:09 2026
EndSun Jan 11 00:56:38 2026
Elapsed17 hrs, 59 mins, 28 secs

All Changes:

:

  1. Change #254635

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 09 Jan 2026 13:32:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d881b911336eed4a939631f56e5ebe05b7954481

    Comments

    urldata: convert 'long' fields to fixed variable types
    Makes sure they work identically cross-platform, as long varies in size
    between Windows vs non-Windows. Makes Curl_easy 16 bytes smaller on 64
    bit Linux.
    
    This reduces support for the RTSP cseq counters to 32 bit (down from 63
    bit previously on 64 bit non-Windows), but it is probably safe.
    Implementations probably rarely support anything above 32 bits anyway
    and this is how curl has worked on Windows since always.
    
    There is now only one 'long' left in urldata.h (in the ssl_config_data
    struct). That field, certverifyresult, is used to store the response
    code from TLS backend code and in the OpenSSL case that function returns
    an actual 'long'.
    
    Closes #20227

    Changed files

    • lib/getinfo.c
    • lib/progress.c
    • lib/rtsp.c
    • lib/setopt.c
    • lib/urldata.h
  2. Change #254637

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 09 Jan 2026 14:59:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9552d9c0c03d9c4a813439607201ef76eb750077

    Comments

    build: detect and include `inttypes.h` again (revert)
    Since not using `PRI*` macros, it isn't needed.
    
    Follow-up to 13c1a934144e98d06214a043ff4538791c7d9583 #20215
    Revert 4c9e4e99c107b8d0bda5b204c5b69a50425567b9 #20208
    
    Closes #20225

    Changed files

    • .github/scripts/cmp-config.pl
    • CMake/unix-cache.cmake
    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • lib/config-os400.h
    • lib/config-plan9.h
    • lib/config-riscos.h
    • lib/config-win32.h
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
  3. Change #254644

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 09 Jan 2026 15:47:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3b261e2ad7269d88291aa44480caa66e1f7a690e

    Comments

    pytest: bump quiche version check update
    Since the Lazy Lucas did not manage to get the fix merged in 0.24.7,
    increase the pytest version check number in the hope that it will happen
    in the next release.
    
    Closes #20229

    Changed files

    • tests/http/test_05_errors.py
  4. Change #254655

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Fri 09 Jan 2026 17:05:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1dedcbc35d63c39ea75d41bffd89df35b1f54df8

    Comments

    GHA: update dependency cloudflare/quiche to v0.24.7
    Closes #20224

    Changed files

    • .github/workflows/http3-linux.yml
  5. Change #254656

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 09 Jan 2026 17:05:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 91c24d3e10399f245c35b49dcd703182cc309973

    Comments

    cmake: silence useless compiler warnings triggered by the FASTBuild generator
    Silencing all of these:
    ```
    11>/tmp/_fbuild.tmp/0x0752c383/core_2/70816E19/krb5_sspi.c:1:5: error: this style of line directive is a GNU extension [-Werror,-Wgnu-line-marker]
        1 | # 1 "<built-in>"
          |     ^
    /path/to/curl/lib/vauth/krb5_sspi.c:29:6: error: this style of line directive is a GNU extension [-Werror,-Wgnu-line-marker]
       29 | # 26 "/path/to/curl/lib/vauth/krb5_sspi.c"
          |      ^
    [...]
    ```
    
    FASTBuild is slightly faster than Ninja in basic (single-machine, build
    from scratch) cases (and can be more faster in other build cases). It
    doesn't support unity builds. Maybe it can bring slightly better
    performance to non-unity cmake CI jobs, in jobs having an 'install
    prereq' phase already, and installing the fastbuild package being faster
    than this gain. It overall seems marginal if any in curl CI. At least
    for now. But it doesn't hurt if it works, and may be useful for some.
    
    Requires CMake 4.2+.
    
    That said this workaround may have a better place within CMake.
    
    Refs:
    https://www.kitware.com/cmake-fastbuild-distributed-cached-and-fast/
    https://cmake.org/cmake/help/latest/generator/FASTBuild.html
    https://github.com/fastbuild/fastbuild
    https://fastbuild.org/docs/home.html
    
    Closes #20230

    Changed files

    • CMake/PickyWarnings.cmake
  6. Change #254678

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 09 Jan 2026 19:35:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2b0d8dcc16c531d3154ab54347a3eaabf9bd2c7d

    Comments

    GHA: switch 12 Linux jobs to arm64
    More cost-effective and seems as fast or faster than Intel.
    
    In particular, valgrind seems to be almost 2x fast. So fast the job pair
    could fit under 10 minutes if merged again (but would be the longest in
    GHA/Linux.)
    
    Installing packages is slightly slower. The package repo is Ubuntu's
    which is slower than the Azure mirror used on Intel (unless Azure is
    broken, which happened a lot last year).
    
    To add to more jobs, the locally built deps also need to be migrated.
    
    Also:
    - add workaround for failing sshd server on Linux arm runners, caused by
      world-writable `HOME` directory.
    
    Closes #20231

    Changed files

    • .github/workflows/appveyor-status.yml
    • .github/workflows/checkdocs.yml
    • .github/workflows/checksrc.yml
    • .github/workflows/checkurls.yml
    • .github/workflows/linux.yml
  7. Change #254682

    Category curl
    Changed by Joshua Vandaƫle <joshuaohnoyoudont@vandaele.software>
    Changed at Fri 09 Jan 2026 22:03:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 97f518e19342d60468c2e8b1b3ce735d4f132652

    Comments

    cmake: reference OpenSSL and ZLIB imported targets only when enabled
    This otherwise broke building on a parent with a static library which is
    available but disabled (e.g. CURL_ZLIB is set to OFF but ZLIB::ZLIB
    exists)
    
    Closes #20217

    Changed files

    • CMakeLists.txt