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

Builder curl-unthreaded-solaris11-i386 Build #4121

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision1e7d0bafc6d25d98ec72ff419df65fda3cf147a7
Got Revision1e7d0bafc6d25d98ec72ff419df65fda3cf147a7
Changes1 change

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 16 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 4121 Build
codebase Build
got_revision 1e7d0bafc6d25d98ec72ff419df65fda3cf147a7 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 1e7d0bafc6d25d98ec72ff419df65fda3cf147a7 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:

StartTue Nov 25 03:48:13 2025
EndTue Nov 25 03:55:31 2025
Elapsed7 mins, 17 secs

All Changes:

:

  1. Change #249872

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 25 Nov 2025 03:44:22
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1e7d0bafc6d25d98ec72ff419df65fda3cf147a7

    Comments

    curlx/fopen: replace open CRT functions their with `_s` counterparts (Windows)
    - `_wopen`        -> `_wsopen_s`
    - `_open`, `open` -> `_sopen_s`
    - `_wfopen`       -> `_wfopen_s`
    - `fopen`         -> `fopen_s`
    - `_wfreopen`     -> `_wfreopen_s`
    - `freopen`       -> `freopen_s`
    
    For better error handling and for using the CRT functions recommended
    via warnings suppressed by `_CRT_SECURE_NO_WARNINGS`.
    
    Also:
    - add missing `freopen_s()` prototype when building with mingw-w64 <5.
      https://sourceforge.net/p/mingw-w64/mingw-w64/ci/a5d824654cdc57f6eac1bb581b078986f3eb6856/
    - tests/server: replace `open()` in the signal handler with `_sopen_s()`
      on Windows.
    - tests/server: reduce scope of a checksrc exception to a single line.
    - checksrc: ban replaced functions.
    
    Refs:
    https://learn.microsoft.com/cpp/c-runtime-library/reference/open-wopen
    https://learn.microsoft.com/cpp/c-runtime-library/reference/sopen-s-wsopen-s
    https://learn.microsoft.com/cpp/c-runtime-library/reference/freopen-wfreopen
    https://learn.microsoft.com/cpp/c-runtime-library/reference/fopen-wfopen
    https://learn.microsoft.com/cpp/c-runtime-library/reference/fopen-s-wfopen-s
    https://learn.microsoft.com/cpp/c-runtime-library/reference/freopen-s-wfreopen-s
    
    Closes #19643

    Changed files

    • lib/curl_setup.h
    • lib/curlx/fopen.c
    • scripts/checksrc.pl
    • tests/server/.checksrc
    • tests/server/util.c