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

Builder curl-ares-solaris11-sparc Build #5437

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf14ce01369851b48e9c72991c26185902ffbdf48
Got Revisionf14ce01369851b48e9c72991c26185902ffbdf48
Changes2 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 30 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 39 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 5437 Build
codebase Build
got_revision f14ce01369851b48e9c72991c26185902ffbdf48 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f14ce01369851b48e9c72991c26185902ffbdf48 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

Timing:

StartWed Mar 11 23:35:26 2026
EndThu Mar 12 00:45:59 2026
Elapsed1 hrs, 10 mins, 32 secs

All Changes:

:

  1. Change #260718

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 11 Mar 2026 23:28:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision da7bfb89a1a0e3816b7f12e67e2439f04e3d36a1

    Comments

    connection_check, simplified
    The protocol handler method `connection_check` allowed to variable
    operations to trigger with variable result bits. Only the `CONNCHECK_ISDEAD`
    and `CONNRESULT_DEAD` were in use. Transform the function into
    `connection_is_dead` without extra parameter and a bool result.
    
    - Remove defines for `CONNCHECK_*` and `CONNRESULT_*`
    - Rename protocol function in handler comments
    - Change RTSP implementation (only protocol that uses this)
    
    Closes #20890

    Changed files

    • lib/curl_rtmp.c
    • lib/dict.c
    • lib/file.c
    • lib/ftp.c
    • lib/gopher.c
    • lib/http.c
    • lib/imap.c
    • lib/ldap.c
    • lib/mqtt.c
    • lib/openldap.c
    • lib/pop3.c
    • lib/rtsp.c
    • lib/smb.c
    • lib/smtp.c
    • lib/telnet.c
    • lib/tftp.c
    • lib/url.c
    • lib/urldata.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/ws.c
  2. Change #260719

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 11 Mar 2026 23:30:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f14ce01369851b48e9c72991c26185902ffbdf48

    Comments

    pingpong: cleanup timeleft handling
    - Move `RESP_TIMEOUT` from urldata.h to pingpong.h as
      `PINGPONG_TIMEOUT_MS`.
    - Rename `Curl_pp_state_timeout()` to `Curl_pp_state_timeleft_ms()` as
      the function returns the time left, not the timout..
    - Update implementation comments and variable names
    
    Closes #20888

    Changed files

    • lib/ftp.c
    • lib/pingpong.c
    • lib/pingpong.h
    • lib/urldata.h