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

Builder curl-threaded-solaris11-i386 Build #3646

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jun 23 02:11:20 2025
EndMon Jun 23 05:17:35 2025
Elapsed3 hrs, 6 mins, 15 secs

All Changes:

:

  1. Change #237469

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:08:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9837dd429a0998341aaf70b377f17506a7e9f0d5

    Comments

    GHA/windows: drop MSYS2 runtime downgrades
    No longer necessary after bumping the default runtime to a version
    fixing the previously experienced performance drop.
    
    Thanks to MSYS2/Cygwin teams for the help and fix.
    
    Follow-up to 9a26be1e6ad45eb6c46af1d7a5e0be273b14fe1b #17708
    Follow-up to d4896d94f2e9530d47bf519c9d9b790720bf10a4 #16424
    
    Closes #17710

    Changed files

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

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:08:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e088e104549421914da9170eeead72a43d42c028

    Comments

    cmake: replace the way clang-tidy verifies tests, fix issues found
    Replace existing `mk-unity.pl` `--embed` workaround with running
    `clang-tidy` manually on individual test source instead. This aligns
    with how clang-tidy works and removes `mk-unity.pl` from the solution.
    
    Also:
    - mqttd: fix potentially uninitialized buffer by zero filling it.
      ```
      tests/server/mqttd.c:484:41: error: The left operand of '<<' is a garbage value
        [clang-analyzer-core.UndefinedBinaryOperatorResult,-warnings-as-errors]
        484 |       payload_len = (size_t)(buffer[10] << 8) | buffer[11];
            |                                         ^
      [...]
      tests/server/mqttd.c:606:45: error: The left operand of '<<' is a garbage value
        [clang-analyzer-core.UndefinedBinaryOperatorResult,-warnings-as-errors]
        606 |       topiclen = (size_t)(buffer[1 + bytes] << 8) | buffer[2 + bytes];
            |                                             ^
      ```
    - sockfilt: fix potential out-of-bound pointer:
      ```
      tests/server/sockfilt.c:1128:33: error: The 2nd argument to 'send' is a buffer
         with size 17010 but should be a buffer with size equal to or greater than
         the value of the 3rd argument (which is 18446744073709551615)
         [clang-analyzer-unix.StdCLibraryFunctions,-warnings-as-errors]
       1128 |         ssize_t bytes_written = swrite(sockfd, buffer, buffer_len);
            |                                 ^
      ```
    - clang-tidy: suppress bogus `bzero()` warnings that happens
      inside the notorious `FD_ZERO()` macros, on macOS.
    
    Ref: https://github.com/curl/curl/pull/17680#issuecomment-2991730158
    
    Closes #17705

    Changed files

    • .github/workflows/linux.yml
    • CMake/Macros.cmake
    • CMakeLists.txt
    • lib/Makefile.am
    • scripts/mk-unity.pl
    • src/Makefile.am
    • tests/CMakeLists.txt
    • tests/client/CMakeLists.txt
    • tests/libtest/CMakeLists.txt
    • tests/server/CMakeLists.txt
    • tests/server/mqttd.c
    • tests/server/sockfilt.c
    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt
  3. Change #237480

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Jun 2025 23:42:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 85bf8b19acd9a346c239e3c8c853f0dbe440070e

    Comments

    cmake: sync tests scripts with each other and autotools (more)
    Closes #17711

    Changed files

    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt