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

Builder curl-ares-solaris10-sparc Build #2952

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionfa9151b41ad986e0514d99dd3fe149f26a7a57a3
Got Revisionfa9151b41ad986e0514d99dd3fe149f26a7a57a3
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 17 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 6 mins, 20 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-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 2952 Build
codebase Build
got_revision fa9151b41ad986e0514d99dd3fe149f26a7a57a3 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision fa9151b41ad986e0514d99dd3fe149f26a7a57a3 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:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats
  4. XCas13

Timing:

StartFri Aug 29 17:21:52 2025
EndSat Aug 30 06:49:04 2025
Elapsed13 hrs, 27 mins, 11 secs

All Changes:

:

  1. Change #244056

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 29 Aug 2025 09:45:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 93f333c18fffc3c091b149f3e0ec2ca02b8dab40

    Comments

    curl_setup: use SIZE_MAX instead of SIZE_T_MAX
    As SIZE_MAX exists in C99
    
    Assisted-by: Stefan Eissing
    Assisted-by: Jay Satiro
    
    Ref: #18406
    Closes #18426

    Changed files

    • lib/cf-h2-proxy.c
    • lib/curl_ntlm_core.c
    • lib/curl_setup.h
    • lib/curlx/dynbuf.h
    • lib/curlx/strparse.c
    • lib/curlx/warnless.c
    • lib/http2.c
    • lib/sendf.c
    • lib/setopt.c
    • lib/strdup.c
    • lib/vauth/cleartext.c
    • lib/vtls/gtls.c
    • src/tool_urlglob.c
  2. Change #244088

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 29 Aug 2025 15:26:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5bb49a485c1d34a088e37c18035897364f961559

    Comments

    GHA/windows: fix perl 5.40.3 bump fallout with custom-built modules
    Perl got bumped from 5.38.4 to 5.40.3. The new version crashes when
    loading the `Win32::Process*` modules built and cached in CI. The build
    job uses Perl 5.38.4.
    
    To avoid the crash, include the Perl version (hashed) in the cache key,
    so that it's only loaded when the Perl version matches.
    
    This solution is imperfect, because some of the jobs will not use the
    Perl modules in transition periods, when different jobs use different
    Perl versions. Anyway, can't think of a better one for now. Another
    option is to drop the effort with these modules. After all they did not
    help with crashes and hangs, nor with performance. While adding quite
    a bit of CI complexity.
    
    Also:
    - test early if the modules load and log the result.
    
    Follow-up to 52775a7fb4ba63d66d60067dea4a5293fb7c55a1 #18296
    
    Closes #18425

    Changed files

    • .github/workflows/windows.yml
  3. Change #244092

    Category curl
    Changed by XCas13 <xcas13ohnoyoudont@gmail.com>
    Changed at Fri 29 Aug 2025 15:59:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 21c288902d76d70ec31a1ae3994e438ac2650472

    Comments

    ngtcp2: handshake timeout should be equal to --connect-timeout
    Default timeout is hardcoded (10 seconds) and doesn't respect
    --connect-timeout parameter. In some cases 10 seconds can be not enough
    or too long to "establish a connection". Moreover the non-working
    --connect-timeout parameter for http3 is confusing. This change makes
    the handshake timeout equal to --connect-timeout, if it's set.
    Discussion is here https://github.com/curl/curl/discussions/18427
    
    Closes #18431

    Changed files

    • lib/vquic/curl_ngtcp2.c
  4. Change #244094

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 29 Aug 2025 16:01:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fa9151b41ad986e0514d99dd3fe149f26a7a57a3

    Comments

    cw-out: handle error codes for 0len writes
    Handle errors returned by the callback the same for 0-length writes as
    for all the others.
    
    Closes #18428

    Changed files

    • lib/cw-out.c