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

Builder curl-unthreaded-solaris11-sparc Build #6135

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision172c16b58ccf8bff2122dcde7ea48967198308f9
Got Revision172c16b58ccf8bff2122dcde7ea48967198308f9
Changes7 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 29 mins, 7 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 2 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 6135 Build
codebase Build
got_revision 172c16b58ccf8bff2122dcde7ea48967198308f9 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 172c16b58ccf8bff2122dcde7ea48967198308f9 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. CatboxParadox
  2. Daniel Stenberg
  3. Stefan Eissing
  4. Viktor Szakats

Timing:

StartWed Jul 29 13:08:11 2026
EndWed Jul 29 14:30:21 2026
Elapsed1 hrs, 22 mins, 10 secs

All Changes:

:

  1. Change #276417

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 29 Jul 2026 13:34:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 53565fbfd60909697ca27a41abc9995c45a9c673

    Comments

    conncache: connection healthiness fix
    Update the `lastchecked` timestamp on connection health checks when
    successful to prevent repeated recalcs for a second.
    
    Rename `seems_dead` to `seems_healthy` because the world is already
    depressing enough.
    
    Consider pending input on connection only unhealthy when the connection
    has no transfers and is not multiplexed.
    
    Closes #22412

    Changed files

    • lib/conncache.c
    • lib/conncache.h
    • lib/http2.c
    • lib/url.c
  2. Change #276420

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 29 Jul 2026 13:35:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3974491c97cbff6ca39dd249c02b24e30171f265

    Comments

    websocket: pause writing and meta data fix
    When writing a decoded chunk of websocket data, always flush the writer
    chain so that buffered data gets delivered before the ws meta data gets
    updated.
    
    Add client writer flags CURL_CW_FLAG_BLOWUP for writer types that may
    significantly enlarge write sizes. This flag causes the pause writer to
    be added and shrinks the write chunk sizes. We do not want that for
    content decoders like WS that do not change the size.
    
    Add test_20_13 to check that large frames are paused/unpaused correctly
    with the matching meta data.
    
    Fixes #22413
    Reported-by: Hendrik Hübner
    Closes #22416

    Changed files

    • lib/content_encoding.c
    • lib/cw-out.c
    • lib/cw-pause.c
    • lib/ftp.c
    • lib/headers.c
    • lib/http_chunks.c
    • lib/sendf.c
    • lib/sendf.h
    • lib/ws.c
    • tests/http/test_20_websockets.py
    • tests/http/testenv/ws_4frames_server.py
  3. Change #276421

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 29 Jul 2026 13:37:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ef15676abb39704129cb547f07d5f044837868b3

    Comments

    EXPERIMENTAL: Apple fast UDP
    Follow-up to 079a11bcba5858ffab2cf6e810e9d980
    
    Closes #22428

    Changed files

    • docs/EXPERIMENTAL.md
  4. Change #276422

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 29 Jul 2026 13:37:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f76f79696e12f0334275f394f24344f69b6739f7

    Comments

    EXPERIMENTAL: cleanups, unify on titles, merge quiche into a single segment
    Closes #22428

    Changed files

    • docs/EXPERIMENTAL.md
  5. Change #276427

    Category curl
    Changed by CatboxParadox <CatboxParadoxohnoyoudont@users.noreply.github.com>
    Changed at Wed 29 Jul 2026 13:51:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c7b1e10dc1dcacae17fc75fdb6572846605d2ffe

    Comments

    h2: bootstrap max streams from multi handle if in use
    Closes #22418

    Changed files

    • lib/http2.c
  6. Change #276428

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 29 Jul 2026 13:54:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2a3804936d8399916a95c103bf31623fccb123a8

    Comments

    src: improve `curlx_memzero()` internal APIs
    - delete zero-and-free wrapper macros. (not yet used)
      To keep it simple.
    - do NULL-check in `curlx_memzero()`.
      To avoid noise at call sites.
    - add `curlx_strzero()` for null-terminated strings, also with
      NULL-check.
    
    Ref: #21637
    Follow-upt o 066478f6346a2d987a9ecc3bd3bf45764d69c1c4 #21598
    
    Closes #21645

    Changed files

    • lib/curl_setup.h
    • lib/curlx/strdup.c
  7. Change #276434

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 29 Jul 2026 14:20:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 172c16b58ccf8bff2122dcde7ea48967198308f9

    Comments

    docs/INTERNALS.md -> docs/DEPENDENCIES.md
    With some minor cleanups
    
    Closes #22430

    Changed files

    • .github/workflows/linux-old.yml
    • GIT-INFO.md
    • docs/DEPENDENCIES.md
    • docs/INTERNALS.md
    • docs/Makefile.am