Builder curl-threaded-solaris11-i386 Build #4689
Results:
Build successful
SourceStamp:
| Project | curl |
| Repository | https://github.com/curl/curl.git |
| Branch | master |
| Revision | 39542f09935aba0b7130c20b6aae0be5cd6ff709 |
| Got Revision | 39542f09935aba0b7130c20b6aae0be5cd6ff709 |
| Changes | 3 changes |
BuildSlave:
unstable11xReason:
The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-i386' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | master | Build |
| builddir | /export/home/buildbot/slave/curl-threaded-solaris11-i386 | slave |
| buildername | curl-threaded-solaris11-i386 | Builder |
| buildnumber | 4689 | Build |
| codebase | Build | |
| got_revision | 39542f09935aba0b7130c20b6aae0be5cd6ff709 | Git |
| osplatform | I386 | SetPropertyFromCommand Step |
| osrelease | 11 | SetPropertyFromCommand Step |
| project | curl | Build |
| repository | https://github.com/curl/curl.git | Build |
| revision | 39542f09935aba0b7130c20b6aae0be5cd6ff709 | 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:
| Name | Label | Value |
|---|
Responsible Users:
- Viktor Szakatscommit@vsz.me
Timing:
| Start | Wed Feb 25 17:54:58 2026 |
| End | Wed Feb 25 20:50:05 2026 |
| Elapsed | 2 hrs, 55 mins, 7 secs |
All Changes:
:
Change #258923
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 25 Feb 2026 15:26:07 Repository https://github.com/curl/curl.git Project curl Branch master Revision 65f9426170360478c70b465444e7783008d2625c Comments
clang-tidy: enable more checks Refs: https://clang.llvm.org/extra/clang-tidy/checks/list.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/assert-side-effect.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/chained-comparison.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/dynamic-static-initializers.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/macro-repeated-side-effects.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/misplaced-operator-in-strlen-in-alloc.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/misplaced-pointer-arithmetic-in-alloc.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/not-null-terminated-result.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/posix-return.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/suspicious-enum-usage.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/suspicious-memset-usage.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/suspicious-missing-comma.html https://clang.llvm.org/extra/clang-tidy/checks/bugprone/suspicious-semicolon.html https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-declaration.html https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-function-ptr-dereference.html https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-parentheses.html Closes #20622
Changed files
- .clang-tidy.yml
Change #258927
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 25 Feb 2026 15:43:23 Repository https://github.com/curl/curl.git Project curl Branch master Revision 3b9d8412c09ed8d38e94b8273af9d05fb163c47c Comments
clang-tidy: add more missing parentheses in macro values Reported when running `HeaderFilterRegex: '.*'` in CI. Also replace an underscored symbol with a regular one in macro definition. Cherry-picked from #20720 Closes #20721
Changed files
- lib/vquic/vquic_int.h
- lib/vtls/vtls.h
Change #258932
Category curl Changed by Viktor Szakats <commit@vsz.me> Changed at Wed 25 Feb 2026 17:28:35 Repository https://github.com/curl/curl.git Project curl Branch master Revision 39542f09935aba0b7130c20b6aae0be5cd6ff709 Comments
cmake: add native clang-tidy support for tests, with concatenated sources Tests are build in "unity"-style, by including sources into an umbrella C files (similar to how CMake unity works). This does not play well with clang-tidy, which seems to unconditionally ignore C sources included like this. To fix it, curl's CMake implements a manual clang-tidy support for tests, which compiles sources one-by-one, while also making sure sources compile cleanly standalone (e.g. all sources need to include `first.h`). The manual clang-tidy implementation is fragile, and performance, in particular when targeting Windows, is abysmal. This patch introduces an alternate solution, enabled by the `_CURL_TESTS_CONCAT=ON` option. In this mode, umbrella sources include the actual sources instead of `#including` them. Allowing to use CMake's built-in clang-tidy support to compile them, with clang-tidy actually checking the sources. Making the manual clang-tidy support unnecessary. In the Windows CI job it results in a 4x performance improvement (4m -> 1m), making it practical to run clang-tidy on tests on Windows, in CI. The main downside is that clang-tidy doesn't understand the `#line` directive. Meaning issues found show the wrong filename and line number next to them. It's not impossible to locate errors this way, but also not convenient. Minor/potential downside is that the concatenated source needs to be reassembled each time an original source is updated. This may result in more copying on the disk when used in local development. The largest source is 1.4MB, so probably not a show-stopper on most machines. Another is the complexity of maintaining two methods in parallel, which may be necessary till clang-tidy understands `#line`: https://github.com/llvm/llvm-project/issues/62405 This solution may in theory also enable adding clang-tidy support for tests in autotools, though I haven't tried. Targeted for curl CI for now, and used in a GHA/windows job. 100% experimental, not recommended outside these. Closes #20667
Changed files
- .github/workflows/windows.yml
- scripts/mk-unity.pl
- tests/libtest/CMakeLists.txt
- tests/server/CMakeLists.txt
- tests/tunit/CMakeLists.txt
- tests/unit/CMakeLists.txt