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

Builder curl-ares-solaris11-sparc Build #6048

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf497b25672227df564e523097845f7169724520e
Got Revisionf497b25672227df564e523097845f7169724520e
Changes5 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 2 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 6048 Build
codebase Build
got_revision f497b25672227df564e523097845f7169724520e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f497b25672227df564e523097845f7169724520e 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. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Jun 15 16:10:13 2026
EndMon Jun 15 17:01:05 2026
Elapsed50 mins, 51 secs

All Changes:

:

  1. Change #271146

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

    Comments

    cf-capsule: complete filter
    Make the capsule filter complete, implement:
    
    - pollset handling
    - flush handling and querying
    - shutdown handling
    - replace allocated send buffer with a bufq
    
    Closes #22019

    Changed files

    • lib/vquic/capsule.c
    • lib/vquic/capsule.h
    • lib/vquic/cf-capsule.c
    • lib/vquic/cf-capsule.h
    • lib/vquic/vquic.c
    • lib/vquic/vquic_int.h
    • tests/unit/unit3400.c
  2. Change #271147

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 15 Jun 2026 15:44:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6ce740403eeb6b948d769b0418ea6066541a7f07

    Comments

    verify-release: verify more thoroughly with git
    If the script is invoked in a git repository it verifies the tarball
    better.
    
    Closes #22018

    Changed files

    • docs/VERIFY.md
    • scripts/verify-release
  3. 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
  4. 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
  5. 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