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

Builder curl-ares-solaris10-sparc Build #3756

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision2f1a21b1d9dd078e6a375317fdcf7b3593f2424f
Got Revision2f1a21b1d9dd078e6a375317fdcf7b3593f2424f
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 15 mins, 1 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-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3756 Build
codebase Build
got_revision 2f1a21b1d9dd078e6a375317fdcf7b3593f2424f Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2f1a21b1d9dd078e6a375317fdcf7b3593f2424f 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. Ron Kuper
  3. Tyler Yankee

Timing:

StartMon Sep 7 04:33:44 2026
EndMon Sep 7 19:35:37 2026
Elapsed15 hrs, 1 mins, 53 secs

All Changes:

:

  1. Change #280933

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 06 Sep 2026 23:39:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6ae9befb2fb6bdfdb5fc11fdf76bbe519fe1f52c

    Comments

    config2setopts: always set the security options for SCP/SFTP
    If the protocols are built-in
    
    Closes #22839

    Changed files

    • src/config2setopts.c
    • tests/data/test1679
  2. Change #280934

    Category curl
    Changed by Ron Kuper <ron.kuperohnoyoudont@sonos.com>
    Changed at Sun 06 Sep 2026 23:46:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3d445dd60d52097331eb2859cf7eda90208d0734

    Comments

    perf: add maprintf and simpleformat printf tests
    snprintf.c times curl_msnprintf() into a caller's buffer with a format
    that uses widths and a '*' argument. Two common shapes are not covered:
    the allocating output path, and a plain format with the integer types
    curl uses most.
    
    maprintf.c times curl_maprintf(), which allocates and returns the result
    and is the path libcurl uses to assemble request lines and headers. The
    format is a request header block: literal text, %s, and a curl_off_t
    Content-Length, the shape lib/http.c builds on every request with a
    body.
    
    simpleformat.c times curl_msnprintf() on a commonly used simple message:
    literal text plus %s, a size_t and a curl_off_t, no width or precision,
    taken from a real infof() line in lib/imap.c. Where snprintf measures an
    elaborate format, this measures the common one.
    
        ./perf maprintf [loops]
        ./perf simpleformat [loops]
    
    checksrc clean; both build through the perf bundle from a clean
    reconfigure and run alongside the existing tests.
    
    Closes #22844

    Changed files

    • tests/perf/Makefile.inc
    • tests/perf/README.md
    • tests/perf/maprintf.c
    • tests/perf/simpleformat.c
  3. Change #280935

    Category curl
    Changed by Tyler Yankee <tyler.yankeeohnoyoudont@kitware.com>
    Changed at Sun 06 Sep 2026 23:49:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2f1a21b1d9dd078e6a375317fdcf7b3593f2424f

    Comments

    build: convert HAS_TIME_T_UNSIGNED to a compile-time check
    `(time_t)-1 > 0` is a constant expression. Checking this at compile time
    instead of running a program (a) is faster, and (b) can be checked when
    cross-compiling.
    
    Suggested-by: Florent Castelli <florent@engflow.com>
    
    Closes #22849

    Changed files

    • CMake/CurlTests.c
    • CMakeLists.txt
    • configure.ac