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

Builder curl-unthreaded-solaris11-sparc Build #6036

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 55 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-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 6036 Build
codebase Build
got_revision eb6d1e098e98f6e15cb8fdd24f87419bd7a8787f Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision eb6d1e098e98f6e15cb8fdd24f87419bd7a8787f Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jun 15 16:34:16 2026
EndMon Jun 15 17:25:03 2026
Elapsed50 mins, 46 secs

All Changes:

:

  1. Change #271152

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 15:52:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7d09426187a1a0e3ad735fc257c6b8eed3612f9a

    Comments

    servers: accept `unlink()` failing due to the file missing
    In `bind_unix_socket()`, before retrying `bind()`.
    
    This patch uses `ENOENT`. This was last time in source between
    d25b0503795f1fbf557632ce870298f52f2a78c1 (2018) and
    dffd996e3b54a0c9314b1c93c7f837a5b2b1fc3d (2023), and also earlier. Also
    defined by supported Windows envs. Seems safe to use.
    
    Reported-by CodeQL
    Follow-up to 99fb36797a3f0b64ad20fcb8b83026875640f8e0
    Cherry-picked from #22010
    
    Closes #22028

    Changed files

    • tests/server/util.c
  2. Change #271153

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 15:55:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8932063828393b76403e1048948257ccdd2965e9

    Comments

    lib668: do not assume null-terminator in test input data
    For correctness. Did not cause an issue, because the null-terminator is
    present.
    
    Also:
    - change a size type to avoid casts.
    - reuse input length value.
    
    Spotted by GitHub Code Quality
    
    Follow-up to 1e4cb333ef632bf081045bb7b36f0736bec52708 #4826
    
    Closes #22027

    Changed files

    • tests/libtest/lib668.c
  3. Change #271154

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

    Comments

    cf-setup: own source file
    Move the setup filter into its own source file.
    
    Move the main connect driving function, `Curl_conn_connect()`,
    from cfilters.c to connect.c.
    
    Closes #22022

    Changed files

    • lib/Makefile.inc
    • lib/cf-https-connect.c
    • lib/cf-setup.c
    • lib/cf-setup.h
    • lib/cfilters.c
    • lib/cfilters.h
    • lib/connect.c
    • lib/connect.h
    • lib/curl_trc.c
  4. 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