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

Builder curl-unthreaded-solaris10-sparc Build #13314

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 23 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 20 mins, 26 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 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 13314 Build
codebase Build
got_revision ca6d6dcb20c41635a211208ebbe40520275b2d2f Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision ca6d6dcb20c41635a211208ebbe40520275b2d2f 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. Simon Dalvai
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartSun Aug 24 04:35:35 2025
EndSun Aug 24 18:33:37 2025
Elapsed13 hrs, 58 mins, 1 secs

All Changes:

:

  1. Change #243757

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 15:45:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 31e6798544bf8aafbd8aef61b08623b92312aa42

    Comments

    build: support LibreSSL native crypto lib with ngtcp2 1.15.0+
    In ngtcp2 1.15.0 the LibreSSL crypto interface library got its own name:
    `libngtcp2_crypto_libressl`. In previous versions it used
    `libngtcp2_crypto_quictls`, shared with quictls itself (but not
    compatible with).
    
    Adapt autotools and cmake scripts to look for the new name first, and
    fall back to the old one if not found.
    
    Fallback to quictls tested OK in CI with both autotools and cmake:
    https://github.com/curl/curl/actions/runs/17174994908?pr=18377
    
    Ref: https://github.com/ngtcp2/ngtcp2/releases/tag/v1.15.0
    Ref: https://github.com/ngtcp2/ngtcp2/pull/1716
    
    Closes #18377

    Changed files

    • CMake/FindNGTCP2.cmake
    • CMakeLists.txt
    • configure.ac
    • docs/INSTALL-CMAKE.md
    • m4/curl-openssl.m4
  2. Change #243759

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 16:11:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 41923af5fc0ec3bd614d9d55032de47619ffce81

    Comments

    GHA/http3-linux: build ngtcp2 for LibreSSL too, add LibreSSL jobs
    Also: Build LibreSSL with cmake. It's 3x faster (90s -> 30s).
    
    Follow-up to e724259bcbb5cf8b3b12e0ff0fd90d2aa47f8f46 #18379
    Follow-up to 31e6798544bf8aafbd8aef61b08623b92312aa42 #18377
    Cherry-picked from #18377
    Closes #18381

    Changed files

    • .github/workflows/http3-linux.yml
  3. Change #243761

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sat 23 Aug 2025 16:25:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d57cfc1a8d12403ab693d52257615de4c5a45350

    Comments

    asyn-thrdd: more simplifications
    - use wakeup sockets non-locked.
    - send wakeup notify only in normal control flow (not cancel). close
      wakeup sockets in unlink only.
    - remove 5ms thread lifetime wait crutch before pthread_cancel().
    
    Closes #18380

    Changed files

    • lib/asyn-thrdd.c
    • lib/curl_threads.h
  4. Change #243774

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 21:32:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1fc622db8e368f57d7de0733df6aa311f3b276b2

    Comments

    openssl: drop single-use interim macro `USE_OPENSSL_SRP`
    Closes #18383

    Changed files

    • lib/vtls/openssl.c
  5. Change #243787

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 22:57:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f67090679f3227bbc31061c8074b07245cb8cc08

    Comments

    openssl: sync an AWS-LC guard with BoringSSL
    BoringSSL always used the same type:
    https://boringssl.googlesource.com/boringssl/+/103ed08549a74af9f03363c633028faf9a475066
    https://github.com/google/boringssl/commit/103ed08549a74af9f03363c633028faf9a475066
    
    But, this codepath isn't built with BoringSSL, because it defines
    `OPENSSL_NO_OCSP` via `opensslconf.h`.
    
    Also drop an out-of-place `#endif` comment.
    
    Ref: 20f4e94eebbdcfe590ae99cb8a3f2ca1b8f970a0 #11568
    
    Closes #18384

    Changed files

    • lib/vtls/openssl.c
  6. Change #243791

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 23:04:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cff4c16b83b1cc57469b2f729d1d06c7828f9f0f

    Comments

    pytest: fix test_17_09_ssl_min_max for BoringSSL
    Ref: https://github.com/curl/curl/actions/runs/17179514833/job/48740057095
    
    Also fix indent.
    
    Cherry-picked from #18384
    Closes #18385

    Changed files

    • tests/http/test_17_ssl_use.py
  7. Change #243792

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 23 Aug 2025 23:07:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aa4596a97efae86711d20d8587db3a6b0c0a59f6

    Comments

    mdlinkcheck: handle links with a leading slash properly
    Ref: #18372
    Closes #18382

    Changed files

    • scripts/mdlinkcheck
  8. Change #243795

    Category curl
    Changed by Simon Dalvai <infoohnoyoudont@simondalvai.org>
    Changed at Sat 23 Aug 2025 23:14:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a855bdee90ed3efb5fc9f9c04973b3d7050a6713

    Comments

    docs: fix link CONTRIBUTE.md link
    Closes #18372

    Changed files

    • .github/CONTRIBUTING.md
  9. Change #243798

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 23 Aug 2025 23:40:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4c40f8b8e01d5d851f6d5a2adc3575269d234051

    Comments

    GHA/linux: add BoringSSL job, with runtests, pytests and cache
    Ref: cff4c16b83b1cc57469b2f729d1d06c7828f9f0f #18385
    Cherry-picked from #18384
    Closes #18386

    Changed files

    • .github/workflows/linux.yml
  10. Change #243807

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 24 Aug 2025 00:59:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ca6d6dcb20c41635a211208ebbe40520275b2d2f

    Comments

    openssl: assume `OPENSSL_VERSION_NUMBER`
    It's defined in all supported OpenSSL versions and forks.
    
    Also formatting in `md4.c`.
    
    Closes #18388

    Changed files

    • lib/curl_sha512_256.c
    • lib/md4.c