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

Builder curl-threaded-solaris10-sparc Build #2828

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision54d04e2536d82d4f859f0e3dd63163f584e3061b
Got Revision54d04e2536d82d4f859f0e3dd63163f584e3061b
Changes6 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 34 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 3 hrs, 55 mins, 48 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 2828 Build
codebase Build
got_revision 54d04e2536d82d4f859f0e3dd63163f584e3061b Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 54d04e2536d82d4f859f0e3dd63163f584e3061b Build
scheduler schedule-curl-threaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. John Bampton
  3. Stefan Eissing

Timing:

StartWed May 28 22:55:44 2025
EndThu May 29 09:42:29 2025
Elapsed10 hrs, 46 mins, 44 secs

All Changes:

:

  1. Change #230916

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 28 May 2025 14:25:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 698491f444947c89822c8776ab3eefe28259aedf

    Comments

    tool_getparam: refactored, simplified
    - add dedicated option functions for bools/none/strings
    - simplify clearing (some) arguments, use '*' instead of ' '
    - scripts/top-complexity: remove getparameter from whitelist
    - handle --help separately
    - getstr and getstrn do not allow a NULL input
    - improve the ;auto check, it needs to be trailing
    - add toggle bit helper function
    - unify an error message for bad --no- use
    - introduce generic handling of deprecated options: ARG_DEPR
    - handle --no- prefix on more booleans:
    
        --cert-status
        --doh-cert-status
        --false-start
        --mptcp
        --ssl-no-revoke
        --ssl-revoke-best-effort
        --tcp-fastopen
    
    Closes #17448

    Changed files

    • scripts/top-complexity
    • src/tool_cfgable.h
    • src/tool_getparam.c
    • src/tool_getparam.h
    • src/tool_helpers.c
    • src/tool_parsecfg.c
  2. Change #230918

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 28 May 2025 14:48:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d16ccbd55de80c271fe822f4ba8b6271fd9166ff

    Comments

    multi: fix add_handle resizing
    Due to someone being stupid, the resizing of the multi's transfer
    table was actually shrinking it. Oh my.
    
    Add test751 to reproduce, add code assertion.
    
    Fixes #17473
    Reported-by: Jeroen Ooms
    Closes #17475

    Changed files

    • lib/multi.c
    • tests/data/Makefile.am
    • tests/data/test751
    • tests/libtest/Makefile.inc
    • tests/libtest/lib751.c
  3. Change #230926

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 28 May 2025 14:53:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 71bb004c29631117ab03d90a4214d1515da5a895

    Comments

    http: fail early when rewind of input failed when following redirects
    When inspecting a possible follow HTTP request, the result of a rewind
    of the upload data was ignored as it was not clear at that point in time
    if the request would become a GET.
    
    This initiated the followup, rewound again, which failed again and
    terminated the follow up.
    
    This was confusing to users as it was not clear of the follow up was
    done or not.
    
    Fix: fail the early rewind when the request is not converted to GET.
    
    Fixes #17472
    Closes #17474
    Reported-by: Jeroen Ooms

    Changed files

    • lib/http.c
    • tests/http/clients/hx-upload.c
    • tests/http/test_07_upload.py
    • tests/http/testenv/httpd.py
  4. Change #230927

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 28 May 2025 14:55:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 46733c585b76018eca4f8dc22083be73623e1532

    Comments

    RELEASE-NOTES: synced
    Bumped to 8.14.1

    Changed files

    • RELEASE-NOTES
    • include/curl/curlver.h
  5. Change #230928

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 28 May 2025 15:00:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fa3f889752e6b5034966de61a372a60773a69ca8

    Comments

    tests: move test docs into /docs
    In an attempt to make them easier to find.
    
    The man pages runtests.md and testcurl.md are in /docs
    
    The rest of the test documentation is in /docs/tests
    
    Closes #17463

    Changed files

    • docs/CMakeLists.txt
    • docs/Makefile.am
    • docs/runtests.md
    • docs/testcurl.md
    • docs/tests/CI.md
    • docs/tests/FILEFORMAT.md
    • docs/tests/HTTP.md
    • docs/tests/TEST-SUITE.md
    • tests/CI.md
    • tests/FILEFORMAT.md
    • tests/Makefile.am
    • tests/README.md
    • tests/http/README.md
    • tests/runtests.md
    • tests/testcurl.md
  6. Change #230944

    Category curl
    Changed by John Bampton <jbamptonohnoyoudont@gmail.com>
    Changed at Wed 28 May 2025 22:47:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 54d04e2536d82d4f859f0e3dd63163f584e3061b

    Comments

    misc: fix spelling
    Closes #17478

    Changed files

    • include/curl/typecheck-gcc.h
    • lib/vssh/libssh.c
    • lib/vtls/vtls_scache.c
    • tests/unit/unit1658.c