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

Builder curl-unthreaded-solaris11-i386 Build #5223

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 52 mins, 52 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-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5223 Build
codebase Build
got_revision 9002d3350cc2086f95c8e850dee3e3ef9d8b11ac Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 9002d3350cc2086f95c8e850dee3e3ef9d8b11ac Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSun Jun 14 17:14:31 2026
EndSun Jun 14 19:28:43 2026
Elapsed2 hrs, 14 mins, 11 secs

All Changes:

:

  1. Change #270930

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 16:16:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 945938de10e84cc7f9d8b420973d2671524a0f03

    Comments

    rtspd: sync up sleep loop with sws
    Check for `!got_exit_signal` as part of the `while()` expression,
    instead of doing it after calling `curlx_wait_ms()`. To simplify and
    improve consistency with rest of code.
    
    Follow-up to 0653fa107f6fb03555d49da86a1fbfc659873f5b
    Follow-up to 123c92c904b2f258ae69e211aa2663e80cb5429a
    
    Closes #22006

    Changed files

    • tests/server/rtspd.c
  2. Change #270931

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 16:16:25
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9002d3350cc2086f95c8e850dee3e3ef9d8b11ac

    Comments

    servers: minor socket error handling fixes
    - sws: fix socket error code in `select()` failure message.
      Spotted by Copilot
      Bug: https://github.com/curl/curl/pull/21998#discussion_r3409469444
    - sws: do not call `SOCKERRNO` twice on error.
    - dnsd: do not call `SOCKERRNO` twice on error.
    - dnsd: replace `goto` with `while()` to sync with rest of code.
    - dnsd: `sendto()` fail message fixes:
      - replace `int` cast with `%zu` mask.
      - drop redundant newline.
      - show socket error string like rest of code.
      - report not-fully-sent error separately from socket errors.
    
    Closes #22007

    Changed files

    • tests/server/dnsd.c
    • tests/server/sws.c