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

Builder curl-threaded-solaris10-i386 Build #4426

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionbb5500a7525a555cef092dd72f30645606b7ae4e
Got Revisionbb5500a7525a555cef092dd72f30645606b7ae4e
Changes7 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 46 mins, 28 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-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 4426 Build
codebase Build
got_revision bb5500a7525a555cef092dd72f30645606b7ae4e Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision bb5500a7525a555cef092dd72f30645606b7ae4e Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartThu May 21 18:27:30 2026
EndFri May 22 04:23:42 2026
Elapsed9 hrs, 56 mins, 11 secs

All Changes:

:

  1. Change #267910

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 21 May 2026 11:07:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 419b1c0b751b257bd54787618454d90fe88e7b79

    Comments

    checksrc: detect `curlx_safefree()` opportunities
    Follow-up to bcd0497c8112e05412d2c649e8d9eea2bda8020e #21700
    Follow-up to 1c3289c85e1a7a939464d5c5e84382d2e250e611 #21684
    Follow-up to c0f0e400e0bc43cbe8c42c6937ed0ac743a8d81a #5968
    Follow-up to 0f4a03cbb6fdb84d05cb6aafe50444edad4f4119
    
    Closes #21703

    Changed files

    • docs/internals/CHECKSRC.md
    • scripts/checksrc.pl
    • tests/data/test1185
  2. Change #267931

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

    Comments

    test1185: fix to previous commit
    Follow-up to 419b1c0b751b257bd54787618454d90fe88e7b79 #21703

    Changed files

    • tests/data/test1185
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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