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

Builder curl-threaded-solaris10-i386 Build #4257

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 58 mins, 24 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 4257 Build
codebase Build
got_revision 4b583b7585c178e46bbe5f51d6da85230f53bde0 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 4b583b7585c178e46bbe5f51d6da85230f53bde0 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. Daniel Díaz
  2. Viktor Szakats
  3. renovate[bot]

Timing:

StartTue Mar 3 07:10:45 2026
EndTue Mar 3 22:22:31 2026
Elapsed15 hrs, 11 mins, 45 secs

All Changes:

:

  1. Change #259594

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 21:30:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27

    Comments

    curlx: add local `snprintf()` helper that always nul-terminates (Windows)
    Make the helper use `vsnprintf()` internally on all supported Windows
    toolchains (dropping `_snprintf()` and `snprintf()`), ensure to
    nul-terminate. Omit the return value to avoid complexity.
    
    Use the helper from `mprintf.c` / `out_double()`, from tests/server code
    and the tests/server-specific build of `curlx_inet_ntop()`,
    `curlx_strerror()` functions. In the single call (in tests) where the
    returned length was used previously, determine it with `strlen()`.
    
    Refs:
    https://github.com/libssh2/libssh2/blob/libssh2-1.11.1/src/misc.c#L57-L79
    https://learn.microsoft.com/cpp/c-runtime-library/reference/snprintf-snprintf-snprintf-l-snwprintf-snwprintf-l
    https://learn.microsoft.com/cpp/c-runtime-library/reference/vsnprintf-vsnprintf-vsnprintf-l-vsnwprintf-vsnwprintf-l
    
    Assisted-by: Jay Satiro
    Follow-up to fa8bd1cc09125b368d4295c19331bf33e2d0c602 #20761
    Follow-up to 8ab468c8aa2e3b7b2354f0e9545859ca631f4457 #15997
    
    Closes #20765

    Changed files

    • lib/Makefile.inc
    • lib/curl_setup.h
    • lib/curlx/snprintf.c
    • lib/curlx/snprintf.h
    • lib/mprintf.c
    • tests/server/Makefile.inc
    • tests/server/first.h
    • tests/server/tftpd.c
  2. Change #259601

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 22:21:21
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 30ec220a68dcb24dc53d5348045ee82801d2aed1

    Comments

    mprintf: silence clang-tidy `readability-suspicious-call-argument`
    Follow-up to 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27 #20765
    
    Closes #20791

    Changed files

    • lib/mprintf.c
  3. Change #259612

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 02 Mar 2026 22:40:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d557c06b529dd6b0f583350e6fc0c471f415c66f

    Comments

    build: drop unused `snprintf()` feature check on Windows
    Follow-up to 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27 #20765
    
    Closes #20790

    Changed files

    • CMake/win32-cache.cmake
    • CMakeLists.txt
    • configure.ac
    • lib/config-win32.h
  4. Change #259635

    Category curl
    Changed by Daniel Díaz <daniel.diazohnoyoudont@sonos.com>
    Changed at Tue 03 Mar 2026 00:28:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3aa63896ae7a745fc50fa9cfa0bef0adb74462f6

    Comments

    mbedtls: guard TLS 1.3 + session tickets usage inside ifdef
    If TLS 1.3 is not supported, the call to
    `mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets()` fails
    during compilation:
    ```
    curl-8.18.0/lib/vtls/mbedtls.c: In function 'mbed_connect_step1':
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: error: implicit declaration of function 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Werror=implicit-function-declaration]
       mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets(&backend->config,
       ^
    curl-8.18.0/lib/vtls/mbedtls.c:809:3: warning: nested extern declaration of 'mbedtls_ssl_conf_tls13_enable_signal_new_session_tickets' [-Wnested-externs]
    ```
    
    Protect this call inside the `#ifdef` block by making sure that support
    for TLS 1.3 is defined.
    
    Closes #20789

    Changed files

    • lib/vtls/mbedtls.c
  5. Change #259642

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 03 Mar 2026 00:46:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86a2a6b5477b848f405f9c93d7a56343349d6e4b

    Comments

    cmake: stop disabling C4774 after replacing `snprintf()`, update comment (MSVC)
    - update comment for `-wd4710` option.
      Ref: https://ci.appveyor.com/project/curlorg/curl/builds/53627545
    - stop suppressing C4774. Not triggered by the replacement call
      `vsnprintf()`, as also confirmed by local tests.
      Follow-up to https://github.com/curl/curl/commit/192b9214a7cf9082665ce460617308cb4836850b
      Ref: https://devblogs.microsoft.com/cppblog/format-specifiers-checking/
      Ref: https://learn.microsoft.com/cpp/error-messages/compiler-warnings/compiler-warnings-c4600-through-c4799
    
    Follow-up to 64f28b8f8859fc80816f7db3b5c4b6f2fd84bd27 #20765
    
    Closes #20792

    Changed files

    • CMake/PickyWarnings.cmake
  6. Change #259655

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Tue 03 Mar 2026 01:36:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4b583b7585c178e46bbe5f51d6da85230f53bde0

    Comments

    Dockerfile: update debian:bookworm-slim digest to 74d56e3
    Closes #20714

    Changed files

    • Dockerfile