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

Builder curl-threaded-solaris10-sparc Build #3000

Build In Progress:

Runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3986149c0405d9d4f33fe1dc9c485e0f362c0a05
Got Revision3986149c0405d9d4f33fe1dc9c485e0f362c0a05
Changes11 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 26 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-unstable10s/slave/curl-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 3000 Build
codebase Build
got_revision 3986149c0405d9d4f33fe1dc9c485e0f362c0a05 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3986149c0405d9d4f33fe1dc9c485e0f362c0a05 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. Viktor Szakats
  3. Yedaya Katsman

Timing:

StartMon Oct 20 04:03:54 2025
Elapsed9 hrs, 11 mins, 16 secs

All Changes:

:

  1. Change #246145

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 16:25:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 769ccb4d4261a75c8a4236fbe7dc3e27956db1c9

    Comments

    curl_get_line: enhance the API
    To make sure callers can properly differentiate between errors and know
    cleanly when EOF happens. Updated all users and unit test 3200.
    
    Triggered by a remark by ZeroPath
    
    Closes #19140

    Changed files

    • lib/altsvc.c
    • lib/cookie.c
    • lib/curl_get_line.c
    • lib/curl_get_line.h
    • lib/hsts.c
    • lib/netrc.c
    • tests/unit/unit3200.c
  2. Change #246146

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 16:26:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 976333dd4052855c22369e89e60a80a9cf925161

    Comments

    curl_path: make sure just whitespace is illegal
    This function could previously accidentally return true and a NULL path
    if only whitespace was provided as argument.
    
    Also, make it stricter and do not allow CR or LF within the string.
    
    Use more strparse parsing.
    
    Drop the comment saying this is from OpenSSH as it has now been
    rewritten since then.
    
    Closes #19141

    Changed files

    • lib/vssh/curl_path.c
    • tests/unit/unit2604.c
  3. Change #246156

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 19 Oct 2025 23:00:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d8a7aad061f96efa0ea93a01845fb66abc256280

    Comments

    GHA/windows: drop `git config core.autocrlf input` steps
    CI works without it now. For an inexplicable reason, this single `git`
    command took 9 seconds per job, making this patch save more than
    2 minutes per workflow run. It was also the only step using PowerShell.
    
    Closes #19150

    Changed files

    • .github/workflows/windows.yml
  4. Change #246159

    Category curl
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Sun 19 Oct 2025 23:42:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 55e0526566f9ea452dec6e443bcd3c358b76b977

    Comments

    openssl: fix unable do typo in failf() calls
    Closes #19149

    Changed files

    • lib/vtls/openssl.c
  5. Change #246160

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 23:45:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7f19fa98199f967bda2ddb1da1d889c6eafcc14b

    Comments

    lib: add asserts that hostname has content
    For all network related protocols there must be a non-blank hostname
    used. This change adds a few asserts in some places to make debug/tests
    catch mistakes if any such would slip in.
    
    Closes #19146

    Changed files

    • lib/doh.c
    • lib/hostip.c
    • lib/socks.c
  6. Change #246167

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 23:47:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4c636b2dc1fb94e554f8885e595888a20cca11fc

    Comments

    tool_operate: return error on strdup() failure
    In src/tool_operate.c inside the Windows safe-search branch (#ifdef
    CURL_CA_SEARCH_SAFE), the code assigns config->cacert = strdup(cacert);
    at line 2076 without checking whether strdup returned NULL.
    
    This would allow the code to continue with the wrong value set, causing
    possible confusion.
    
    Pointed out by ZeroPath
    Closes #19145

    Changed files

    • src/tool_operate.c
  7. Change #246168

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 23:47:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d3b2ba92c7ed587d48afd1bbc58de19eab6645bf

    Comments

    rustls: exit on error
    In init_config_builder_verifier() the call to
    rustls_root_cert_store_builder_build() set result on failure but did not
    return.
    
    Pointed out by ZeroPath
    Closes #19125

    Changed files

    • lib/vtls/rustls.c
  8. Change #246169

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 23:48:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 00cb679c04ef9e0f30bd99c9dcc58c1e1928c01a

    Comments

    openssl: remove dead code
    A condition in infof_certstack() would always equal true after a
    previous change.
    
    Follow-up to e2a4de8a607d3c7f52918ef50ab6411c75
    
    Pointed out by Coverity
    Closes #19142

    Changed files

    • lib/vtls/openssl.c
  9. Change #246172

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 19 Oct 2025 23:59:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8504c41e2c61475355318a89446891c375b86aec

    Comments

    tool_cb_rea: use poll instead of select if available
    - poll doesn't have the FD_SETSIZE problem
    
    - select: if socket >= FD_SETSIZE, skip the call
    
    Closes #19143

    Changed files

    • src/tool_cb_rea.c
  10. Change #246173

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 20 Oct 2025 00:00:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c21655e7ff243e5b9924c19a061e5e5ab70958b8

    Comments

    tool_filetime: cap crazy filetimes instead of erroring
    Also cap the minimum allowed timestamp now.
    
    Closes #19147

    Changed files

    • src/tool_filetime.c
  11. Change #246175

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 20 Oct 2025 00:25:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3986149c0405d9d4f33fe1dc9c485e0f362c0a05

    Comments

    GHA/windows: delete remains of Perl `Win32-Process*` caching
    Follow-up to c8d6643df212791edee705a94c890335dac8762b #19083

    Changed files

    • .github/workflows/windows.yml