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

Builder curl-unthreaded-solaris11-i386 Build #4083

Results:

Build successful

SourceStamp:

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

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, 40 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 4083 Build
codebase Build
got_revision 3d80d37cf0bdfc25645bd150c692d122e94ef1cb Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3d80d37cf0bdfc25645bd150c692d122e94ef1cb 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 Nov 19 22:07:57 2025
EndWed Nov 19 22:10:47 2025
Elapsed2 mins, 50 secs

All Changes:

:

  1. Change #249392

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 19 Nov 2025 22:04:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2decbb1c1f8a975425e2be5afebb3096b50de599

    Comments

    runtests: add `-m=seconds` to override test curl command timeout
    To override the curl default of 5 minutes (300000 ms).
    
    Sometimes a simple test data change can result in a stuck test, this
    option makes it exit with an error early. Possible future use in CI
    or fast machines to prevent a single test taking 5 minutes and failing
    the whole job.
    
    Example hangers:
    
    tests/data/test65:
    ```diff
    -<data1000 crlf="yes">
    +<data1000 crlf="headers">
    ```
    
    tests/data/tests993:
    ```diff
    -%repeat[1000 x 95 328485%0d%0a]%</data>
    +%repeat[1000 x 95 328485%0d%0a]%
    +</data>
    ```
    
    Closes #19319

    Changed files

    • docs/runtests.md
    • tests/data/test1400
    • tests/data/test1401
    • tests/data/test1402
    • tests/data/test1403
    • tests/data/test1404
    • tests/data/test1405
    • tests/data/test1406
    • tests/data/test1407
    • tests/data/test1420
    • tests/data/test1465
    • tests/data/test1481
    • tests/data/test285
    • tests/globalconfig.pm
    • tests/runner.pm
    • tests/runtests.pl
  2. Change #249393

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 19 Nov 2025 22:04:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3d80d37cf0bdfc25645bd150c692d122e94ef1cb

    Comments

    curlx: add and use `curlx_freopen()`
    To complement the existing `curlx_fopen()` internal API.
    It's used by the curl's `--stderr` option.
    
    `curlx_freopen()` adds two features to the bare `freopen()`:
    - tracing for debug-enabled builds.
    - Unicode and long-filename support for Windows builds.
    
    In effect this adds long-filename and enables Unicode support for
    the `--stderr <filename>` curl command-line option on Windows.
    
    Also add to checksrc.
    
    Follow-up to 2f17a9b654121dd1ecf4fc043c6d08a9da3522db #10673
    
    Closes #19598

    Changed files

    • docs/internals/CHECKSRC.md
    • lib/curl_setup.h
    • lib/curlx/fopen.c
    • lib/curlx/fopen.h
    • lib/memdebug.c
    • scripts/checksrc.pl
    • src/tool_stderr.c