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

Builder curl-ares-solaris11-sparc Build #6049

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 40 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 6049 Build
codebase Build
got_revision adb606eae752eaeea9a5fcea77fc46498e2ecf05 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision adb606eae752eaeea9a5fcea77fc46498e2ecf05 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jun 15 17:01:06 2026
EndMon Jun 15 17:51:59 2026
Elapsed50 mins, 53 secs

All Changes:

:

  1. Change #271156

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 15 Jun 2026 15:59:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eb6d1e098e98f6e15cb8fdd24f87419bd7a8787f

    Comments

    ratelimits: use minimal burst rate
    Some protocols (and servers) prefer to batch IO and will not send data
    unless the window is of sufficient size. Set the burst rate for our
    rate limits to a minimum of 32KB to prevent stalling.
    
    Reported-by: Tatsuhiro Tsujikawa
    
    Closes #22016

    Changed files

    • lib/ratelimit.c
    • lib/setopt.c
  2. Change #271165

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 16:43:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0dae3b2690ad280d010f1ca9073801040aca947b

    Comments

    servers: accept `lstat()` failing due to the file missing
    In `bind_unix_socket()`, before retrying `bind()`.
    
    Before this patch the code wanted to check if the to-be-deleted unix
    socket path was indeed a socket, before deleting it and retrying to
    bind. If `lstat()` failed for any reason, it skipped retry. Fix to retry
    if `lstat()` failed because of the file missing.
    
    Ref: https://pubs.opengroup.org/onlinepubs/9799919799/functions/lstat.html
    
    Follow-up to 0882e3951d910b923f3463fa98604df9fcb13a0c #22026
    Follow-up to 03bc93bd327e06e86af0b0c14a888f7482affedc #22021
    Follow-up to e70f8ebd34edade24df442152f52b361abaf4309 #22020
    Follow-up to 30e491e5c921aecca5a16083d8185840dc64eccd #7034
    Follow-up to 99fb36797a3f0b64ad20fcb8b83026875640f8e0
    
    Closes #22010

    Changed files

    • tests/server/util.c
  3. Change #271167

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 16:57:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision adb606eae752eaeea9a5fcea77fc46498e2ecf05

    Comments

    curl_formdata: fix to pass long where missing, document `CURLFORM_NAMELENGTH`
    - lib650: pass `long` to `CURLFORM_NAMELENGTH` in test.
      Spotted by Copilot.
      https://github.com/curl/curl/pull/22011#discussion_r3412407235
      Follow-up to 3620e569b312476f1e63b298106f942079b5afe8
    
    - lib650: drop an interim variable, and interim casts.
      Follow-up to 60776a0515c2a8f572902ad5bcc9f63eeaeafa84 #2747
    
    - curl_formdata.md: document `CURLFORM_NAMELENGTH` on man page.
    
    - curl_formdata.md: pass `long` to `CURLFORM_BUFFERLENGTH` on man page.
    
    - formdata: pass `long` to `CURLFORM_CONTENTSLENGTH` in comment.
    
    Closes #22017

    Changed files

    • docs/libcurl/curl_formadd.md
    • lib/formdata.c
    • tests/libtest/lib650.c