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

Builder curl-threaded-solaris10-sparc Build #3478

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisiondaa6b27b4d998d62c8198b4fe167199cc7bf0064
Got Revisiondaa6b27b4d998d62c8198b4fe167199cc7bf0064
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 31 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 46 mins, 14 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 4 mins, 36 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 3478 Build
codebase Build
got_revision daa6b27b4d998d62c8198b4fe167199cc7bf0064 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision daa6b27b4d998d62c8198b4fe167199cc7bf0064 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. Viktor Szakats

Timing:

StartMon Feb 16 13:09:26 2026
EndTue Feb 17 06:58:08 2026
Elapsed17 hrs, 48 mins, 42 secs

All Changes:

:

  1. Change #257860

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Feb 2026 22:54:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dead29362a9e8f1dc7e5c59f9ff358337ff0e121

    Comments

    GHA/windows: mark test 3000 flaky too
    Similar to test 3001 marked flaky earlier.
    
    Example:
    https://github.com/curl/curl/actions/runs/22035738719/job/63668228484?pr=20597#step:14:4099
    
    Follow-up to 3ae234b2a3aca14908c292ac09755f6c08daac1a #20462
    
    Closes #20602

    Changed files

    • .github/workflows/windows.yml
  2. Change #257861

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Feb 2026 22:54:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1eec8b8d037ecf13b2bcc55c290c4423ca3ca73d

    Comments

    mprintf: rename internal enum to avoid collision with AmigaOS symbol
    Also:
    - drop AmigaOS workaround.
    
    Closes #20584

    Changed files

    • lib/mprintf.c
  3. Change #257862

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Feb 2026 22:54:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision daa6b27b4d998d62c8198b4fe167199cc7bf0064

    Comments

    include: avoid recursive macros
    To fix potential `-Wdisabled-macro-expansion` warnings when using these
    macros within other macros. Fixing for example:
    ```
    lib/doh.c:328:3: error: disabled expansion of recursive macro [clang-diagnostic-disabled-macro-expansion,-warnings-as-errors]
      328 |   ERROR_CHECK_SETOPT(CURLOPT_URL, url);
          |   ^
    lib/doh.c:271:14: note: expanded from macro 'ERROR_CHECK_SETOPT'
      271 |     result = curl_easy_setopt((CURL *)doh, x, y);       \
          |              ^
    include/curl/curl.h:3332:44: note: expanded from macro 'curl_easy_setopt'
     3332 | #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param)
          |                                            ^
    [...]
    ```
    
    Also update comments on why curl continues to disable
    `-Wdisabled-macro-expansion` and `-Wused-but-marked-unused` warnings.
    
    Follow-up to 92f215fea1aa8bd5b1709d38f42aab77ab3fc662 #18477
    
    Closes #20597

    Changed files

    • CMake/PickyWarnings.cmake
    • include/curl/curl.h
    • include/curl/typecheck-gcc.h
    • m4/curl-compilers.m4