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

Builder curl-unthreaded-solaris11-i386 Build #4565

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 6 mins, 1 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 12 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 4565 Build
codebase Build
got_revision 2f7d37f54a5b659a645856097cd5611ce264b261 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2f7d37f54a5b659a645856097cd5611ce264b261 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:

StartWed Jan 28 05:44:04 2026
EndWed Jan 28 09:05:16 2026
Elapsed3 hrs, 21 mins, 11 secs

All Changes:

:

  1. Change #256542

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 28 Jan 2026 03:26:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a4e2232c434473c0a1175f2bd2576673aa8c4692

    Comments

    tool_doswin: avoid Windowsisms in socket code (cont.)
    For general readability. Also to match the rest of the source code.
    
    - bump `send()` result type from `int` to `ssize_t`.
    - fix an `int` to be `curl_socklen_t`.
    - `.S_un.S_addr` -> `.s_addr`.
    - `SD_RECEIVE` -> `SHUT_RD`.
    - `SD_SEND` -> `SHUT_WR`.
    
    Follow-up to a81ab3e6db370f31fca2fc67ca8bfda263f15caa #20452
    Follow-up to 9a2663322c330ff11275abafd612e9c99407a94a #17572
    
    Closes #20457

    Changed files

    • src/tool_doswin.c
  2. Change #256543

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 28 Jan 2026 03:27:20
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2f7d37f54a5b659a645856097cd5611ce264b261

    Comments

    windows: `USE_WINSOCK` to guard winsock2 code (where missing)
    Replacing `_WIN32`.
    
    Also:
    - tool_doswin: guard possibly non-portable socket code with
      `USE_WINSOCK`. The socket is cast to `HANDLE` and passed to
      win32 API `SetStdHandle(STD_INPUT_HANDLE, ...)`.
    - lib/setup-win32.h: move `#undef`s before their `#define` pair.
    
    Closes #20455

    Changed files

    • lib/curl_setup.h
    • lib/functypes.h
    • lib/setup-win32.h
    • lib/url.c
    • src/tool_doswin.c
    • src/tool_operate.c