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

Builder curl-threaded-solaris11-i386 Build #4010

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision9d1acd048c75b24d56d5131cc12f907e37f0bd8f
Got Revision9d1acd048c75b24d56d5131cc12f907e37f0bd8f
Changes5 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 52 mins, 14 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-threaded-solaris11-i386 slave
buildername curl-threaded-solaris11-i386 Builder
buildnumber 4010 Build
codebase Build
got_revision 9d1acd048c75b24d56d5131cc12f907e37f0bd8f Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 9d1acd048c75b24d56d5131cc12f907e37f0bd8f Build
scheduler schedule-curl-threaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. x2018

Timing:

StartFri Nov 7 14:55:54 2025
EndFri Nov 7 17:42:11 2025
Elapsed2 hrs, 46 mins, 16 secs

All Changes:

:

  1. Change #247887

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Fri 07 Nov 2025 12:58:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2684af257e7fc4369e4ac1d45b4e303859259677

    Comments

    osslq: code readability
    - remove assertions that are unnecessary
    - lookup stream after assertions
    
    Closes #19394

    Changed files

    • lib/vquic/curl_osslq.c
  2. Change #247888

    Category curl
    Changed by x2018 <xkernel.wangohnoyoudont@foxmail.com>
    Changed at Fri 07 Nov 2025 13:01:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 608d96694b392a96e448de266a41fc65607150b9

    Comments

    lib: refactor the type of funcs which have useless return and checks
    Some internal functions always return CURLE_OK.
    
    - Curl_http_proxy_get_destination() does that from bb4032a, (2 years
      ago) And the original inline code does not need to check the status.
    
    - Curl_wildcard_init() does that from e60fe20. (8 years ago)
    
    - Curl_initinfo() does that from a very beginning.
    
    - Curl_pgrsSetDownloadCounter() did not have a return before 914e49b,
      ad051e1 recovered its content (2 years ago) but did not completely
      recovered the changes related to it.
    
    - auth_digest_get_qop_values() does that from 676de7f.
    
    This directly changes their type to void and cleaned the remaining
    checks for their return value.
    
    Closes #19386

    Changed files

    • lib/cf-h2-proxy.c
    • lib/ftplistparser.c
    • lib/ftplistparser.h
    • lib/getinfo.c
    • lib/getinfo.h
    • lib/http_proxy.c
    • lib/http_proxy.h
    • lib/progress.c
    • lib/progress.h
    • lib/sendf.c
    • lib/telnet.c
    • lib/transfer.c
    • lib/vauth/digest.c
  3. Change #247889

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 13:06:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 891714acb4b1a9ebff9c6f773c07f9bcd909efef

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  4. Change #247905

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 14:12:59
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d8bad9926ca6ca6def5c09fbcecebcd6c87b68a7

    Comments

    docs: mention umask need when curl creates files
    for cookies, alt-svc and HSTS, command line and library
    
    Closes #19396

    Changed files

    • .github/scripts/pyspelling.words
    • docs/cmdline-opts/alt-svc.md
    • docs/cmdline-opts/cookie-jar.md
    • docs/cmdline-opts/hsts.md
    • docs/libcurl/opts/CURLOPT_ALTSVC.md
    • docs/libcurl/opts/CURLOPT_COOKIEJAR.md
    • docs/libcurl/opts/CURLOPT_HSTS.md
  5. Change #247906

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Fri 07 Nov 2025 14:14:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9d1acd048c75b24d56d5131cc12f907e37f0bd8f

    Comments

    gtls: skip session resumption when verifystatus is set
    Resumed TLS sessions skip OCSP stapled-response verification. Force a
    full handshake so verifystatus() runs.
    
    Follow-up to 4bfd7a961521e1fd6aab7610e931d82a342781
    
    Pointed out by ZeroPath

    Changed files

    • lib/vtls/gtls.c