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

Builder curl-ares-solaris10-sparc Build #2929

Results:

Exception runtest mail result

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 30 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 28 mins, 10 secs )
    1. stdio
    2. resultlog
  3. Mail result Mail result exception ( 0 secs )
    1. err.text
    2. err.html

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 2929 Build
codebase Build
got_revision be01b60ce532af6eb18c11fbd565355dbb570a2e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision be01b60ce532af6eb18c11fbd565355dbb570a2e 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. Viktor Szakats
  3. renovate[bot]

Timing:

StartThu Aug 14 16:59:42 2025
EndFri Aug 15 06:53:04 2025
Elapsed13 hrs, 53 mins, 22 secs

All Changes:

:

  1. Change #242934

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 14 Aug 2025 08:57:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision adb0fa737d040358042c738ee75325c4f090f939

    Comments

    socks5: split out two functions from the SOCKS5 state machine
    Complexity down from 74 to 59
    
    Closes #18277

    Changed files

    • lib/socks.c
  2. Change #242935

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 14 Aug 2025 08:58:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 16ddcd6712f58894d30849bfcc0248919f1684ab

    Comments

    wolfssh: move the sftp upload init out of the state machine
    Into its own function to reduce complexity. Takes complexity down from
    72 to 50.
    
    Closes #18278

    Changed files

    • lib/vssh/wolfssh.c
  3. Change #242939

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Thu 14 Aug 2025 10:32:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d10880eac83930c320a349381b22fa85f984cea1

    Comments

    Dockerfile: update debian:bookworm-slim Docker digest to b1a7414
    Closes #18270

    Changed files

    • Dockerfile
  4. Change #242972

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 14 Aug 2025 16:34:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision be01b60ce532af6eb18c11fbd565355dbb570a2e

    Comments

    runtests: assume `Time::HiRes`, drop Perl Win32 dependency
    `Time::HiRes` was already used unconditionally before this patch in
    `servers.pm`. This package, and functions used by runtests (`sleep` and
    `gettimeofday`) are supported by the minimum Perl version required for
    curl:
    
    https://perldoc.perl.org/5.8.0/Time::HiRes
    
    - Drop the `portable_sleep()` wrapper in favor of `Time::HiRes::sleep()`.
    - Use `Time::HiRes` unconditionally in `serverhelp.pm`.
    - Stop using the `Win32` package where available. It was included
      to provide a Windows fallback for `Time::HiRes::sleep()`. It was never
      actually called, but the dependency may have loaded `Win32.dll`, which
      often appears in failed fork operations in GHA logs.
      Ref: a6fed41f6f12f3b71cfe85609f02a294b972d3d3 #5054 #5034
      Ref: https://github.com/curl/curl/discussions/14854
    
    Closes #18287

    Changed files

    • tests/ftpserver.pl
    • tests/processhelp.pm
    • tests/runner.pm
    • tests/runtests.pl
    • tests/serverhelp.pm
    • tests/servers.pm