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

Builder curl-unthreaded-solaris10-sparc Build #13970

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 15 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 45 mins, 0 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 13970 Build
codebase Build
got_revision cb4395b4031679c91f0a53286dc584d5f53d7b33 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision cb4395b4031679c91f0a53286dc584d5f53d7b33 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. Song X. Gao
  3. Stefan Eissing
  4. Tim Martin
  5. Viktor Szakats
  6. Xi Ruoyao

Timing:

StartTue May 12 13:42:59 2026
EndWed May 13 01:42:45 2026
Elapsed11 hrs, 59 mins, 45 secs

All Changes:

:

  1. Change #266779

    Category curl
    Changed by Tim Martin <timohnoyoudont@timmart.in>
    Changed at Tue 12 May 2026 02:10:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 185e67e1fa32e36b019fb0b5918e0e17a3edd087

    Comments

    docs: fix --follow doc typo
    Let the singular ~~object~~ subject "option" agree with the verb "set".
    
    Closes #21553

    Changed files

    • docs/cmdline-opts/follow.md
  2. Change #266784

    Category curl
    Changed by Xi Ruoyao <xry111ohnoyoudont@xry111.site>
    Changed at Tue 12 May 2026 03:54:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cfadbaa133504d47ece989486fde944d076e0222

    Comments

    gnutls: allow building with nettle 4.0
    Closes #21169

    Changed files

    • lib/curl_sha512_256.c
    • lib/md5.c
    • lib/sha256.c
    • lib/vtls/gtls.c
    • m4/curl-gnutls.m4
  3. Change #266789

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 12 May 2026 04:26:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b582a936dd207fe2f2d1346208e5411686548891

    Comments

    GHA/linux: build local wolfSSL opensslextra with `--enable-ed25519`
    For use with RFC 9421 HTTP Message Signatures support.
    
    Ref: https://github.com/curl/curl/pull/21239/files#r3222322908
    Ref: #21239
    
    Closes #21555

    Changed files

    • .github/workflows/linux.yml
  4. Change #266801

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 12 May 2026 05:33:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 01f08dc4eb20a19aa60230653715c8b839619cbb

    Comments

    gnutls: fix more nettle 4+ compatibility issues
    - disable DES with nettle 4. It no longer supports it.
      ```
      lib/curl_ntlm_core.c:67:12: fatal error: 'nettle/des.h' file not found
         67 | #  include <nettle/des.h>
            |            ^~~~~~~~~~~~~~
      ```
    
    - fix MD4 support with nettle 4.
      ```
      lib/md4.c:178:36: error: too many arguments to function call, expected 2, have 3
        178 |   md4_digest(ctx, MD4_DIGEST_SIZE, digest);
            |   ~~~~~~~~~~                       ^~~~~~
      ```
    
    - fix unused argument compiler warning:
      ```
      lib/vtls/gtls.c:2267:39: error: unused parameter 'sha256len' [clang-diagnostic-unused-parameter,-warnings-as-errors]
      2267 |                                size_t sha256len)
           |                                       ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970143?pr=21557
    
    - GHA/macos: stop enabling NTLM in the GnuTLS job.
      It no longer builds due to missing DES support in nettle 4.
      ```
      lib/curl_ntlm_core.c:90:4: error: "cannot compile NTLM support without a crypto library with DES."
         90 | #  error "cannot compile NTLM support without a crypto library with DES."
            |    ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/25710321195/job/75488970170?pr=21557
    
    Follow-up to cfadbaa133504d47ece989486fde944d076e0222 #21169
    
    Closes #21557

    Changed files

    • .github/workflows/macos.yml
    • lib/curl_ntlm_core.c
    • lib/md4.c
    • lib/vtls/gtls.c
  5. Change #266812

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 12 May 2026 08:11:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2a2104f3cff44bb28bb570a093be52bbeeed8f23

    Comments

    event: fix wakeup consumption
    The events on a multi wakeup socketpair were only consumed via
    curl_multi_poll()/curl_multi_wait() but not in event based processing on
    a curl_multi_socket() call. That led to busy loops as reported in
    
    Fixes #21547
    Reported-by: Earnestly on github
    Closes #21549

    Changed files

    • lib/multi.c
  6. Change #266814

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 12 May 2026 08:33:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cb0636980bd6b667ff6a8370210186295e24cb80

    Comments

    tool_urlglob: add named globs
    Idea-by: Bastian Jesuiter
    
    Verified by test 2408 - 2411
    
    Closes #21409

    Changed files

    • docs/cmdline-opts/_GLOBBING.md
    • docs/cmdline-opts/output.md
    • src/tool_operate.c
    • src/tool_urlglob.c
    • src/tool_urlglob.h
    • tests/data/Makefile.am
    • tests/data/test2408
    • tests/data/test2409
    • tests/data/test2410
    • tests/data/test2411
    • tests/data/test75
    • tests/data/test759
    • tests/data/test761
  7. Change #266826

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 12 May 2026 10:21:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7eb0b30934d1e54229646293b088e625a8b7b214

    Comments

    tool_urlglob: make globbing error reported for correct position
    Reported by Codex Security
    
    Closes #21561

    Changed files

    • src/tool_urlglob.c
  8. Change #266827

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 12 May 2026 10:26:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2256162fa748216f6ffec9a50ed5e199d47341a1

    Comments

    tftp: stricter option name checks
    Previously, the use of checkprefix() alone allowed the code to match not
    only on "blksize" but also (mistakenly) on "blksizeFOO" etc.
    
    Reported-by: Andrew Nesbit
    Closes #21560

    Changed files

    • lib/tftp.c
  9. Change #266828

    Category curl
    Changed by Song X. Gao <39278329+xsgao-githubohnoyoudont@users.noreply.github.com>
    Changed at Tue 12 May 2026 10:27:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cc6777d939976b2f322dcbe5ae76ef28c6b4632d

    Comments

    spnego_sspi: honor CURLOPT_GSSAPI_DELEGATION for Windows SSPI
    Make CURLOPT_GSSAPI_DELEGATION effective on Windows builds that use SSPI
    (instead of a native GSS-API implementation), so Kerberos delegation can
    be requested during SPNEGO/Negotiate authentication.
    
    Closes #21528

    Changed files

    • lib/setopt.c
    • lib/urldata.h
    • lib/vauth/spnego_sspi.c
    • tests/data/Makefile.am
    • tests/data/test3302
    • tests/unit/Makefile.inc
    • tests/unit/unit3302.c
  10. Change #266841

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 12 May 2026 12:39:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cb4395b4031679c91f0a53286dc584d5f53d7b33

    Comments

    rtsp: bump buf after rtsp_filter_rtp()
    Reported-by: Andrew Nesbit
    Closes #21563

    Changed files

    • lib/rtsp.c