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

Builder curl-ares-solaris10-sparc Build #3767

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 30 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 3767 Build
codebase Build
got_revision 0b04700029149d740f50b7925dd162aa270e3908 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 0b04700029149d740f50b7925dd162aa270e3908 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. Dan Fandrich
  2. Daniel Stenberg
  3. Viktor Szakats

Timing:

StartSun Sep 13 19:55:58 2026
EndMon Sep 14 10:10:31 2026
Elapsed14 hrs, 14 mins, 32 secs

All Changes:

:

  1. Change #281631

    Category curl
    Changed by Dan Fandrich <danohnoyoudont@coneharvesters.com>
    Changed at Sun 13 Sep 2026 06:17:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a724199d27dbe8bf2fc3aed7776e30ea0932bc25

    Comments

    docs: mention scripts/testnum in the test suite docs

    Changed files

    • docs/tests/TEST-SUITE.md
  2. Change #281645

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 13 Sep 2026 11:45:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3654c8dc85b998a645d41e50108e29d10439e484

    Comments

    GHA/non-native: bump cross-platform-actions, FreeBSD 14.5, enable DragonFly BSD jobs
    Try DragonFly BSD again, after upstream fix.
    
    Ref: https://github.com/cross-platform-actions/action/releases/tag/v1.6.0
    
    Follow-up to bf29c3e17544ff13c67e94157e6440662317355b #22145
    
    Closes #22931

    Changed files

    • .github/workflows/non-native.yml
  3. Change #281661

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 13 Sep 2026 15:56:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0b04700029149d740f50b7925dd162aa270e3908

    Comments

    urlapi: run the urlparser perf test faster
    - Batch contiguous unencoded characters into single curlx_dyn_addn()
      calls instead of invoking dynbuf append byte-by-byte
    - Inline lowercasing in absolute url parsing
    - Make junkscan pass over data only once instead of twice
    - Use lookup-table to validate hostname in hostname_check()
    - Improve needs_dedotdot with leading memchr calls for dots and percent
    - Replace a strcspn() call with a while loop
    - Replace several strchr with memchr
    - Detect IPv6 earlier and skip some logic
    - Skip the full URL junkscan:
      - allows for better return codes for where the problem lies
      - allows for proper support for the URLENCODE flag
      - runs a little faster
    
    This completes the perf test roughly 17% faster on my machine in debug
    mode.
    
    Closes #22924

    Changed files

    • lib/urlapi.c
    • lib/vdns/doh.c
    • tests/libtest/lib1560.c