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

Builder curl-unthreaded-solaris10-i386 Build #16621

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 57 mins, 28 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 16621 Build
codebase Build
got_revision 8e549fbdd36be99a62019218cd171ec225f25506 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 8e549fbdd36be99a62019218cd171ec225f25506 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu May 21 23:37:03 2026
EndFri May 22 09:26:33 2026
Elapsed9 hrs, 49 mins, 30 secs

All Changes:

:

  1. Change #267950

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 14:13:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c583e825f7a5b7ceda7d7bb703497dbe306713de

    Comments

    GHA: simplify boolean `if` comparisons
    Closes #21709

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
  2. Change #267956

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 14:57:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b0239417b34238121165dee465afb944cbad17ec

    Comments

    GHA/windows: bump windows-2025 runners to windows-2025-vs2026
    To silence:
    ```
    NOTICE: windows-2025 requests are being redirected to windows-2025-vs2026 by June 15, 2026
    ```
    
    Closes #21713

    Changed files

    • .github/workflows/windows.yml
  3. Change #267960

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 15:16:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 64c51ad1785fbf09c944a35f5566163b50a861b3

    Comments

    cmake: opt in `MSVC_VERSION` 1951 to picky warnings
    Closes #21714

    Changed files

    • CMake/PickyWarnings.cmake
  4. Change #267961

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 15:16:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a076f821e1744a68e9c659ebe7092bf9bedbd0b9

    Comments

    multi: silence gcc 16 `-Wnull-dereference`, bump CI job to test
    - GHA/windows: bump dl-mingw job from gcc 15 to 16.
    
    - multi: silence warning while building libcurlu:
      ```
      In function 'multi_ischanged',
          inlined from 'multi_socket.isra' at D:/a/curl/curl/lib/multi.c:3282:6:
      D:/a/curl/curl/lib/multi.c:1710:17: error: null pointer dereference [-Werror=null-dereference]
       1710 |   bool retval = (bool)multi->recheckstate;
            |                 ^~~~~~~~~~~~~~~~~~~~~~~~~
      D:/a/curl/curl/lib/multi.c:1712:25: error: null pointer dereference [-Werror=null-dereference]
       1712 |     multi->recheckstate = FALSE;
            |                         ^
      ```
      Ref: https://github.com/curl/curl/actions/runs/26217071531/job/77142119137?pr=21707
    
    - multi: silence another `-Wnull-dereference`, popping up in libcurl
      with gcc 13 after the previous silencing:
      ```
      In function 'Curl_multi_xfers_running',
          inlined from 'multi_socket.isra' at ../../lib/multi.c:3292:28:
      ../../lib/multi.c:4132:15: error: null pointer dereference [-Werror=null-dereference]
       4132 |   return multi->xfers_alive;
            |          ~~~~~^~~~~~~~~~~~~
      ```
      Ref: https://github.com/curl/curl/actions/runs/26218822231/job/77148186045
    
    - multi: also add `DEBUGASSERT(multi)` to the two updated functions.
    
    Closes #21707

    Changed files

    • .github/workflows/windows.yml
    • lib/multi.c
  5. Change #267970

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 17:28:38
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bb5500a7525a555cef092dd72f30645606b7ae4e

    Comments

    units: tidy up begin/end blocks
    - use `UNITTEST_BEGIN_SIMPLE`/`UNITTEST_END_SIMPLE` where missing.
    - drop redundant `(void)arg;` where using `UNITTEST_BEGIN*`.
    - unit1636: drop redundant block after `UNITTEST_BEGIN*`.
    - unit1609: fix typo in comment.
    - unit1627: merge to `if`s.
    
    Closes #21715

    Changed files

    • tests/unit/unit1609.c
    • tests/unit/unit1625.c
    • tests/unit/unit1626.c
    • tests/unit/unit1627.c
    • tests/unit/unit1636.c
    • tests/unit/unit1675.c
    • tests/unit/unit3300.c
    • tests/unit/unit3301.c
  6. Change #267983

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 22:17:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e549fbdd36be99a62019218cd171ec225f25506

    Comments

    GHA/checksrc: add auditor-level zizmor (warning-only)
    CI time cost is 1s.
    
    It may replace existing pedantic check, if this level isn't bringing
    false-positives or annoyance. Officially it's not meant for CI, but curl
    has been passing this in the last couple of months when checked locally.
    
    Closes #21718

    Changed files

    • .github/workflows/checksrc.yml