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

Builder curl-ares-solaris10-sparc Build #3769

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf4caaa2354d45d40dd07c6d09712dbc502adf79a
Got Revisionf4caaa2354d45d40dd07c6d09712dbc502adf79a
Changes6 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 ...' ( 22 mins, 51 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 3769 Build
codebase Build
got_revision f4caaa2354d45d40dd07c6d09712dbc502adf79a Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f4caaa2354d45d40dd07c6d09712dbc502adf79a 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. Daniel Stenberg
  2. Stefan Eissing
  3. Stephen Psaradellis

Timing:

StartTue Sep 15 01:03:18 2026
EndTue Sep 15 14:18:38 2026
Elapsed13 hrs, 15 mins, 19 secs

All Changes:

:

  1. Change #281770

    Category curl
    Changed by Stephen Psaradellis <s.n.psaradellisohnoyoudont@gmail.com>
    Changed at Mon 14 Sep 2026 13:34:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 458704d484706732890599290c109d0149df5e52

    Comments

    rtsp: accept a Content-Length body on methods that expected none
    pick_method() sets no_body for OPTIONS, ANNOUNCE, SETUP, PLAY, PAUSE,
    TEARDOWN, SET_PARAMETER and RECORD, so http_on_response() marked the
    transfer done at the end of the headers and a response body announced
    with Content-Length was thrown away as excess data.
    
    RFC 2326 allows a body on any RTSP response, so for RTSP only, when the
    response declares a Content-Length above zero, clear no_body and read
    it. Responses without a Content-Length, and all of HTTP, are unchanged.
    
    Adds test657 and removes the KNOWN_BUGS entry.
    
    Fixes #12414
    Closes #22935

    Changed files

    • docs/KNOWN_BUGS.md
    • lib/http.c
    • tests/data/Makefile.am
    • tests/data/test657
  2. Change #281771

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 14 Sep 2026 13:38:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4a608405b6911e2fe374fca4239b3480a4e0cb2f

    Comments

    test 3555: Basic TELNET negotiation over HTTP proxy
    Closes #22943

    Changed files

    • tests/data/Makefile.am
    • tests/data/test3555
  3. Change #281772

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 14 Sep 2026 13:40:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 753735af87f5c30cb6f60a70342f8bc4bc5fd5db

    Comments

    pingpong: add a max loop counter for Curl_pp_readresp
    To make sure it cannot get stuck in this function.
    
    Reported-by: Joshua Rogers
    Closes #22932

    Changed files

    • lib/pingpong.c
  4. Change #281787

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 14 Sep 2026 14:15:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3f79dc36253e88411e13188042909d9bdc1978db

    Comments

    telnet: make it work through proxy tunnels
    Change telnet's antiquated corner places where it still used the
    connection socket directly. Use the transfer send call instead which
    goes the proper way thought the connection filters.
    
    Closes #22941

    Changed files

    • lib/telnet.c
  5. Change #281813

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 14 Sep 2026 16:31:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ef362b78ac4349c3160c498fffccb5b69e65b15d

    Comments

    multi-event: fix timeout of pending transfers
    The multi's "run dirty" loop ignored transfers that are not in
    processing state, e.g. pending transfers. That led to timeouts not being
    acted upon for those transfers.
    
    Fixed by moving a "dirty" pending transfer to the connect state and
    processing it.
    
    Added test_02_37 for verification.
    
    Closes #22942

    Changed files

    • docs/libcurl/libcurl-env-dbg.md
    • lib/multi.c
    • tests/http/test_02_download.py
  6. Change #281817

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 14 Sep 2026 17:01:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f4caaa2354d45d40dd07c6d09712dbc502adf79a

    Comments

    urlapi: reject more junk from the zone id
    Extended test 1560 to verify
    
    Closes #22949

    Changed files

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