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

Builder curl-unthreaded-solaris10-sparc Build #14072

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionb24346fe31ad45a91de7d9be0698c8b2c0954d3d
Got Revisionb24346fe31ad45a91de7d9be0698c8b2c0954d3d
Changes2 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 40 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 7 hrs, 13 mins, 58 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 14072 Build
codebase Build
got_revision b24346fe31ad45a91de7d9be0698c8b2c0954d3d Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b24346fe31ad45a91de7d9be0698c8b2c0954d3d 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. Dan Fandrich
  2. Jay Satiro

Timing:

StartSat Aug 8 20:50:28 2026
EndSun Aug 9 11:04:59 2026
Elapsed14 hrs, 14 mins, 31 secs

All Changes:

:

  1. Change #277452

    Category curl
    Changed by Dan Fandrich <danohnoyoudont@coneharvesters.com>
    Changed at Sat 08 Aug 2026 07:33:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 725fbeaad9532c42acfc9d8e66b48f38425a7697

    Comments

    tests: fix typo in assert message in http test
    Found by pyrefly.

    Changed files

    • tests/http/test_01_basic.py
  2. Change #277488

    Category curl
    Changed by Jay Satiro <raysatiroohnoyoudont@yahoo.com>
    Changed at Sat 08 Aug 2026 17:32:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b24346fe31ad45a91de7d9be0698c8b2c0954d3d

    Comments

    api: fix printf format specifier
    - Use %hu for unsigned short instead of %u.
    
    Prior to this change some compilers could warn of an argument type
    mismatch. C argument promotion rules promote the unsigned short argument
    to an int, which does not match %u (unsigned int) but does match %hu
    (unsigned short).
    
    Assisted-by: Viktor Szakats
    
    Closes https://github.com/curl/curl/pull/22511

    Changed files

    • lib/api.c