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

Builder curl-ares-solaris11-i386 Build #4666

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf1cee1f18a0c817810117a08ae146c1d57bb8303
Got Revisionf1cee1f18a0c817810117a08ae146c1d57bb8303
Changes4 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Feb 23 17:21:21 2026
EndMon Feb 23 20:29:17 2026
Elapsed3 hrs, 7 mins, 56 secs

All Changes:

:

  1. Change #258693

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 23 Feb 2026 14:43:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6ad50dc2859e9ea764aafe51b34d430a663fb1d3

    Comments

    cmake: add C++ integration test
    Also:
    - include code to verify a C++-specific public header regression
      reported in 8.19.0-rc2.
    - curl/curl.h: mention C++ global namespace in comment.
    - GHA/dist: add CI job for C++. Runtime: 15 seconds.
    
    Follow-up to ee9b000438bd6e4cecc8a933804397a55ad0f7b8 #20686
    Ref: #20682
    
    Closes #20687

    Changed files

    • .github/workflows/distcheck.yml
    • Makefile.am
    • include/curl/curl.h
    • tests/cmake/CMakeLists.txt
    • tests/cmake/test.c
    • tests/cmake/test.cpp
  2. Change #258709

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 23 Feb 2026 16:00:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3058ed3df873c21ebba2007c3b12ed9f37558bfe

    Comments

    lib: use lib source directory as base include path
    Backtrack on previous change that aimed to solve the wrong `share.h`
    being included. It turns out it did not fix this issue. At the same time
    it introduced relative header filenames and the need to include the same
    headers differently depending on the source files' location, reducing
    readability and editability.
    
    Replace this method by re-adding curl's lib source directory to the
    header path and addressing headers by the their full, relative name to
    that base directory. Aligning with this method already used in src and
    tests.
    
    With these advantages:
    - makes includes easier to read, recognize, grep, sort, write, and copy
      between sources,
    - syncs the way these headers are included across curl components,
    - avoids the ambiguity between system `schannel.h`, `rustls.h` vs.
      local headers using the same names in `lib/vtls`,
    - silences clang-tidy `readability-duplicate-include` checker, which
      detects the above issue,
      Ref: https://clang.llvm.org/extra/clang-tidy/checks/readability/duplicate-include.html
    - possibly silences TIOBE coding standard warnings:
      `6.10.2.a: Don't use relative paths in #include statements.`
    - long shot: it works well with concatenated test sources, for
      clang-tidy-friendly custom unity builds. Ref: #20667
    
    Slight downside: it's not enforced.
    
    If there happens to be a collision between a local `lib/*.h` header and
    a system one, the solution is to rename (possibly with its `.c`
    counterpart) into the `curl_` namespace. This is also the method used by
    curl in the past.
    
    Also:
    - curlx/inet_pton: reduce scope of an include.
    - toolx/tool_time: apply this to an include, and update VS project
      files accordingly. Also dropping unnecessary lib/curlx header path.
    - clang-tidy: enable `readability-duplicate-include`.
    
    Follow-up to 3887069c661b40e76b053a4867eb565d4761ab3e #19676
    Follow-up to 625f2c1644da58b9617479775badea21f125ce6d #16991 #16949
    
    Closes #20623

    Changed files

    • .clang-tidy.yml
    • lib/CMakeLists.txt
    • lib/Makefile.am
    • lib/curlx/base64.c
    • lib/curlx/basename.c
    • lib/curlx/basename.h
    • lib/curlx/curlx.h
    • lib/curlx/dynbuf.c
    • lib/curlx/fopen.c
    • lib/curlx/fopen.h
    • lib/curlx/inet_ntop.c
    • lib/curlx/inet_ntop.h
    • lib/curlx/inet_pton.c
    • lib/curlx/inet_pton.h
    • lib/curlx/multibyte.c
    • lib/curlx/multibyte.h
    • lib/curlx/nonblock.c
    • lib/curlx/strcopy.c
    • lib/curlx/strdup.c
    • lib/curlx/strdup.h
    • lib/curlx/strerr.c
    • lib/curlx/strparse.c
    • lib/curlx/strparse.h
    • lib/curlx/timediff.c
    • lib/curlx/timediff.h
    • lib/curlx/timeval.c
    • lib/curlx/timeval.h
    • lib/curlx/version_win32.c
    • lib/curlx/version_win32.h
    • lib/curlx/wait.c
    • lib/curlx/wait.h
    • lib/curlx/warnless.c
    • lib/curlx/winapi.c
    • lib/vauth/cleartext.c
    • lib/vauth/cram.c
    • lib/vauth/digest.c
    • lib/vauth/digest.h
    • lib/vauth/digest_sspi.c
    • lib/vauth/gsasl.c
    • lib/vauth/krb5_gssapi.c
    • lib/vauth/krb5_sspi.c
    • lib/vauth/ntlm.c
    • lib/vauth/ntlm_sspi.c
    • lib/vauth/oauth2.c
    • lib/vauth/spnego_gssapi.c
    • lib/vauth/spnego_sspi.c
    • lib/vauth/vauth.c
    • lib/vauth/vauth.h
    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/curl_ngtcp2.h
    • lib/vquic/curl_quiche.c
    • lib/vquic/curl_quiche.h
    • lib/vquic/vquic-tls.c
    • lib/vquic/vquic-tls.h
    • lib/vquic/vquic.c
    • lib/vquic/vquic.h
    • lib/vquic/vquic_int.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vssh/ssh.h
    • lib/vssh/vssh.c
    • lib/vssh/vssh.h
    • lib/vtls/apple.c
    • lib/vtls/apple.h
    • lib/vtls/cipher_suite.c
    • lib/vtls/cipher_suite.h
    • lib/vtls/gtls.c
    • lib/vtls/gtls.h
    • lib/vtls/hostcheck.c
    • lib/vtls/hostcheck.h
    • lib/vtls/keylog.c
    • lib/vtls/keylog.h
    • lib/vtls/mbedtls.c
    • lib/vtls/mbedtls.h
    • lib/vtls/openssl.c
    • lib/vtls/openssl.h
    • lib/vtls/rustls.c
    • lib/vtls/rustls.h
    • lib/vtls/schannel.c
    • lib/vtls/schannel.h
    • lib/vtls/schannel_int.h
    • lib/vtls/schannel_verify.c
    • lib/vtls/vtls.c
    • lib/vtls/vtls.h
    • lib/vtls/vtls_int.h
    • lib/vtls/vtls_scache.c
    • lib/vtls/vtls_scache.h
    • lib/vtls/vtls_spack.c
    • lib/vtls/vtls_spack.h
    • lib/vtls/wolfssl.c
    • lib/vtls/wolfssl.h
    • lib/vtls/x509asn1.c
    • lib/vtls/x509asn1.h
    • projects/Windows/tmpl/curl.vcxproj
    • src/toolx/tool_time.c
  3. Change #258716

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 23 Feb 2026 16:45:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e9786038d6ca664a6268df32c8db11a8276f28db

    Comments

    setopt: make setopt_copypostfields a separate function
    Closes #20688

    Changed files

    • lib/setopt.c
  4. Change #258722

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 23 Feb 2026 17:03:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f1cee1f18a0c817810117a08ae146c1d57bb8303

    Comments

    clang-tidy: add arg names to prototypes where missing (cont.)
    Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`,
    or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`. Seen on Windows.
    
    Follow-up to e8415ad3c7ab69a7056daa4b39e7a0044c43f5ba #20657
    Follow-up to c878160e9c1f7366e64299aa02540d5495c3df9c #20624
    
    Closes #20693

    Changed files

    • lib/curlx/inet_pton.h