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

Builder curl-threaded-solaris10-i386 Build #4406

Build In Progress:

Runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 12 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 4406 Build
codebase Build
got_revision 2238f0921cb00b33958470e30dff6326ea6d5c65 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 2238f0921cb00b33958470e30dff6326ea6d5c65 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg

Timing:

StartWed May 13 12:14:23 2026
Elapsed7 hrs, 19 mins, 34 secs

All Changes:

:

  1. Change #266954

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 13 May 2026 09:45:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 89f38c168cf5e898d099302b8ed0cec0f82c0415

    Comments

    CURLOPT_MAXFILESIZE: clarify this also works for on-going transfers
    It was not really clear, but it has worked like this since 8.4.0 which
    now is a while.
    
    Closes #21582

    Changed files

    • docs/libcurl/opts/CURLOPT_MAXFILESIZE.md
    • docs/libcurl/opts/CURLOPT_MAXFILESIZE_LARGE.md
  2. Change #266958

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 13 May 2026 10:07:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2238f0921cb00b33958470e30dff6326ea6d5c65

    Comments

    curl: named globs in output file name for upload glob references
    Use parts of text from the upload filename field when that uses globbing
    by giving it a name the same way we do it for URL globs. For example, if
    you upload three files to a HTTP URL and want to save the corresponding
    responses in separate files:
    
        curl -T 'file{<num>1,2,3}' https://upload.example/ -o 'response-#<num>'
    
    Verified by test 2014
    
    Closes #21407

    Changed files

    • docs/cmdline-opts/output.md
    • docs/cmdline-opts/upload-file.md
    • src/tool_operate.c
    • src/tool_urlglob.c
    • src/tool_urlglob.h
    • tests/data/Makefile.am
    • tests/data/test2014