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

Builder curl-ares-solaris10-sparc Build #3450

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision85a895c59fa5d268176a9ca243c6c515f54c7f24
Got Revision85a895c59fa5d268176a9ca243c6c515f54c7f24
Changes9 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 1 mins, 19 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 15 mins, 34 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-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3450 Build
codebase Build
got_revision 85a895c59fa5d268176a9ca243c6c515f54c7f24 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 85a895c59fa5d268176a9ca243c6c515f54c7f24 Build
scheduler schedule-curl-ares-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats
  3. renovate[bot]

Timing:

StartWed Feb 11 18:57:21 2026
EndThu Feb 12 12:56:56 2026
Elapsed17 hrs, 59 mins, 34 secs

All Changes:

:

  1. Change #257411

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 06:10:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e269e3daf1c73f629ea1bba14db07c9c18f99340

    Comments

    pytest: bump pip cryptography to 46.0.5
    For CVE-2026-26007 (curl not affected)

    Changed files

    • tests/http/requirements.txt
  2. Change #257412

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 11 Feb 2026 06:12:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 69f67f5e1a060b17260d72751219a93a7abb5c8d

    Comments

    GHA/linux: update pizlonator/fil-c to v0.678
    Closes #20558

    Changed files

    • .github/workflows/linux.yml
  3. Change #257421

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 11 Feb 2026 09:41:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 434e5312f45c8a3bc06f26ec0b2820131e60583a

    Comments

    tool_operate: split post_per_transfer into sub functions
    To make it easier to read and manage. Reduce complexity.
    
    Closes #20560

    Changed files

    • src/tool_operate.c
  4. Change #257422

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 11 Feb 2026 09:43:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6d2e9926d7d8c35c0d9aaeb081ea4eb30821ad0a

    Comments

    docs/libcurl: unify WARNING use
    Consistently use bold and colon.
    
    Closes #20561

    Changed files

    • docs/libcurl/opts/CURLOPT_ACCEPT_ENCODING.md
    • docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.md
    • docs/libcurl/opts/CURLOPT_DOH_SSL_VERIFYPEER.md
    • docs/libcurl/opts/CURLOPT_PROXY_SSL_OPTIONS.md
    • docs/libcurl/opts/CURLOPT_PROXY_SSL_VERIFYPEER.md
    • docs/libcurl/opts/CURLOPT_SSL_OPTIONS.md
    • docs/libcurl/opts/CURLOPT_SSL_VERIFYHOST.md
    • docs/libcurl/opts/CURLOPT_SSL_VERIFYPEER.md
    • docs/libcurl/opts/CURLOPT_VERBOSE.md
  5. Change #257447

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 14:26:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c05cd2a10e4b97093273e170d6086446aa4d1bac

    Comments

    curl_setup.h: merge back single-use internal header `curl_setup_once.h`
    Originally split in 2006, but the issues cited are no longer present in
    current code. As of now both `curl_setup.h` and `curl_setup_once.h` are
    included once per compiler invocation, without recursion. The latter is
    a sub-header of the former with no clear distinction in their contents.
    
    Merge them to avoid having to decide where to put new global PP logic.
    Also to make it easier to overview what gets defined/included globally
    and in what order. (Perhaps even allowing some tidying up here.)
    
    Follow-up to 77b3bc239daf75d9fb7702ee34c8e5871c47d387
    
    Closes #20555

    Changed files

    • lib/Makefile.inc
    • lib/curl_setup.h
    • lib/curl_setup_once.h
  6. Change #257449

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 14:51:08
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 982ab7b53fdcef9db636e2f02b137579787e0837

    Comments

    build: check `MSG_NOSIGNAL` directly, drop detection and interim macro
    Drop detecting it at configure time, along with the interim macro
    `HAVE_MSG_NOSIGNAL`. There is no longer a reason for this workaround,
    and allows to save the work at configure time and simplify.
    
    Also say in a comment that `sys/socket.h` is defining this macro.
    
    Follow-up to 77b3bc239daf75d9fb7702ee34c8e5871c47d387
    
    Closes #20559

    Changed files

    • CMake/OtherTests.cmake
    • CMake/unix-cache.cmake
    • CMake/win32-cache.cmake
    • acinclude.m4
    • configure.ac
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
    • lib/multi.c
    • lib/transfer.c
  7. Change #257455

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 16:15:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c220674ac451231e05df1686bd3da473e5c37252

    Comments

    windows: tidy up includes, macros, document dependencies
    - define `SECURITY_WIN32` globally in `curl_setup.h`.
      To make sure it applies to all includes.
    
    - document which Windows headers require `SECURITY_WIN32`.
    
    - stop suppressing MSVC warning:
      `C4201 is: nonstandard extension used : nameless struct/union`
      The warning is no longer seen in supported build envs with the current
      codebase.
      Follow-up to 8beff4355956e3d18ceb3afc21c1f3edec82543c #8419
    
    - document why `SCHANNEL_USE_BLACKLISTS` is needed.
    
    - just define `SCHANNEL_USE_BLACKLISTS`, drop the unnecessary value `1`.
    
    - stop defining unused `SCH_CRED_MAX_SUPPORTED*` fallback macros.
      Follow-up to 8beff4355956e3d18ceb3afc21c1f3edec82543c #8419
    
    - document why `subauth.h` is included (where missing).
    
    - move and de-dupe `subauth.h` include into `curl_setup.h`, limit to
      Schannel builds.
    
    - stop include `schnlsp.h`. It is a 1-to-1 compatibility wrapper for
      `schannel.h`.
    
    - curl_sspi.h: clarify comment about `SP_NAME_` macros.
      They are local macros, their SDK names are different and curl does not
      use them.
    
    - curl_sspi.h: drop superfluous includes `security.h` and `rpc.h`.
    
    Cherry-picked from #20556
    
    Closes #20564

    Changed files

    • lib/curl_setup.h
    • lib/curl_sspi.h
    • lib/ldap.c
    • lib/vtls/schannel.h
    • lib/vtls/schannel_int.h
  8. Change #257459

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 17:01:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 325d0e0a684617638e1f040f76ef0677ba429af7

    Comments

    cmake: fix `CURL_DROP_UNUSED` accidental left always-enabled
    Follow-up to 66ad54e46b934e17e786e10e0292fa6f1f3fa816 #20357
    
    Closes #20565

    Changed files

    • CMakeLists.txt
  9. Change #257463

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 11 Feb 2026 18:00:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 85a895c59fa5d268176a9ca243c6c515f54c7f24

    Comments

    cli_hx_download: add Schannel support
    Fixes:
    ```
    $ wine libtests.exe cli_hx_download https://curl.se/
    [...]
    Assertion failed: t->checked_ssl, file .../curl/tests/libtest/cli_hx_download.c, line 563
    ```
    
    into:
    ```
    [t-0] info Schannel TLS version 0x00000800
    ```
    
    Refs:
    https://learn.microsoft.com/windows/win32/secauthn/querycontextattributes--general
    https://learn.microsoft.com/windows/win32/api/schannel/ns-schannel-secpkgcontext_connectioninfo
    
    Ref: c220674ac451231e05df1686bd3da473e5c37252 #20564
    Follow-up to ba9ddb935794a9fdd6906f043102a0d3e5795113 #18066
    
    Closes #20556

    Changed files

    • tests/libtest/cli_hx_download.c