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

Builder curl-ares-solaris10-i386 Build #3714

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7e0d4dd4a86e11babfc91c8b7e0caefc7048832c
Got Revision7e0d4dd4a86e11babfc91c8b7e0caefc7048832c
Changes9 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats
  4. x2018

Timing:

StartSat Nov 8 19:49:08 2025
EndSun Nov 9 04:45:11 2025
Elapsed8 hrs, 56 mins, 3 secs

All Changes:

:

  1. Change #247976

    Category curl
    Changed by x2018 <xkernel.wangohnoyoudont@foxmail.com>
    Changed at Sat 08 Nov 2025 10:28:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a6fcaf29588a50aa6c27a05994ebe3478f041fba

    Comments

    rtmp: precaution for a potential integer truncation
    On some platforms, socket descriptors may use types larger than int.
    When these values exceed INT_MAX, conversion to int can truncate to
    negative values causing RTMP connection failures, and even accidentally
    affect other socket when high-value descriptors map to existing
    lower-value sockets after integer conversion. This check ensures socket
    values are within the safe range before passing them to the RTMP
    library.
    
    Closes #19399

    Changed files

    • lib/curl_rtmp.c
  2. Change #247977

    Category curl
    Changed by x2018 <xkernel.wangohnoyoudont@foxmail.com>
    Changed at Sat 08 Nov 2025 10:33:06
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9c0ccd27390c985bd4b7875b5f161ac1e68c9da4

    Comments

    vtls: handle possible malicious certs_num from peer
    For GnuTLS, mbedTLS, Rustls, Schannel and wolfSSL
    
    This check was previously added for OpenSSL in 3df71e6dc23e80466c2d448
    
    Closes #19397

    Changed files

    • lib/vtls/gtls.c
    • lib/vtls/mbedtls.c
    • lib/vtls/openssl.c
    • lib/vtls/rustls.c
    • lib/vtls/schannel.c
    • lib/vtls/vtls.h
    • lib/vtls/wolfssl.c
  3. Change #247997

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 08 Nov 2025 13:42:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 16c6ea36cca6684aacbcb33578af61b28e3fee0d

    Comments

    GHA/linux: add minimal Fil-C build with tests
    Requirements for Fil-C:
    - not to accidentally pick up system headers. E.g. from `/usr/include`
      on Linux. It can happen when any dependency is auto-detected on this
      header path. This makes Fil-C find the wrong system headers, which
      in turn breaks the configuration step in subtle ways (with CMake) and
      less subtle ways (autotools). Then CMake ends up running into an error
      while compiling.
    - build all dependencies with Fil-C too.
      (this patch doesn't build any dependencies yet.)
    - "unity" mode disabled. It should work, but needs a lot of memory and
      slower than a standard compiler, or a Fil-C non-unity build.
    - x86_64 Linux host platform when using the pre-built toolchain.
    
    Observations on a minimal, static build made with no dependencies and
    Fil-C 0.674 (based on clang 20.1.8).
    - curl tool sizes:
      - cmake, default, w/o -O: 30 MB (gcc 14.2.0: 1.7 MB)
      - cmake, default, w/o -O, stripped: 29.6 MB (gcc: 1.4 MB)
      - cmake, Release, -O3: 7.2 MB (gcc: 1 MB)
      - cmake, Release, -O3, stripped: 6.8 MB (gcc: 0.93 MB)
      - autotools, default, -O2: 7 MB
    - libcurl.a size is 32 MB (cmake, default, w/o -O) (gcc: 2.7 MB)
    - build times 3-3.5x longer (compared to system gcc 14.2.0):
    - all runtests available pass OK.
    - all pytests skipped due to missing features/dependencies.
    - shared libcurl builds also work (cmake, default: 25 MB libcurl.so and
      5.75 MB (5.6 stripped) curl tool)
    - autotools works fine too, with dependencies disabled or set to avoid
      `/usr/include`.
    
    Closes #19391

    Changed files

    • .github/workflows/linux.yml
  4. Change #248013

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sat 08 Nov 2025 17:02:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f55974c139d88582a9c503c9a35840f3b9fae458

    Comments

    vtls: fix CURLOPT_CAPATH use
    A regression in curl 8.17.0 led to a customer CAPATH set by the
    application (or the curl command) to be ignored unless licurl was built
    with a default CAPATH.
    
    Add test cases using `--capath` on the custom pytest CA, generated with
    the help of the openssl command when available.
    
    Fixes #19401
    Reported-by: Brad King
    Closes #19308

    Changed files

    • lib/vtls/vtls.c
    • tests/http/test_17_ssl_use.py
    • tests/http/testenv/certs.py
    • tests/http/testenv/curl.py
    • tests/http/testenv/env.py
  5. Change #248014

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 08 Nov 2025 17:05:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8442c24c9a05dcf50ce44c8f92718138ae14dd0f

    Comments

    CURLINFO: remove 'get' and 'get the' from each short desc
    The short descriptions describe the data each info retrieves. The info
    itself does not 'get' the data.
    
    This simplifies and shortens the descriptions and make them more
    consistent.
    
    Closes #19406

    Changed files

    • docs/libcurl/opts/CURLINFO_ACTIVESOCKET.md
    • docs/libcurl/opts/CURLINFO_APPCONNECT_TIME.md
    • docs/libcurl/opts/CURLINFO_CAINFO.md
    • docs/libcurl/opts/CURLINFO_CAPATH.md
    • docs/libcurl/opts/CURLINFO_CERTINFO.md
    • docs/libcurl/opts/CURLINFO_CONDITION_UNMET.md
    • docs/libcurl/opts/CURLINFO_CONNECT_TIME.md
    • docs/libcurl/opts/CURLINFO_CONNECT_TIME_T.md
    • docs/libcurl/opts/CURLINFO_CONN_ID.md
    • docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD.md
    • docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_DOWNLOAD_T.md
    • docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD.md
    • docs/libcurl/opts/CURLINFO_CONTENT_LENGTH_UPLOAD_T.md
    • docs/libcurl/opts/CURLINFO_CONTENT_TYPE.md
    • docs/libcurl/opts/CURLINFO_COOKIELIST.md
    • docs/libcurl/opts/CURLINFO_EARLYDATA_SENT_T.md
    • docs/libcurl/opts/CURLINFO_EFFECTIVE_METHOD.md
    • docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.md
    • docs/libcurl/opts/CURLINFO_FILETIME.md
    • docs/libcurl/opts/CURLINFO_FILETIME_T.md
    • docs/libcurl/opts/CURLINFO_FTP_ENTRY_PATH.md
    • docs/libcurl/opts/CURLINFO_HEADER_SIZE.md
    • docs/libcurl/opts/CURLINFO_HTTPAUTH_AVAIL.md
    • docs/libcurl/opts/CURLINFO_HTTPAUTH_USED.md
    • docs/libcurl/opts/CURLINFO_HTTP_CONNECTCODE.md
    • docs/libcurl/opts/CURLINFO_HTTP_VERSION.md
    • docs/libcurl/opts/CURLINFO_LASTSOCKET.md
    • docs/libcurl/opts/CURLINFO_LOCAL_IP.md
    • docs/libcurl/opts/CURLINFO_LOCAL_PORT.md
    • docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME.md
    • docs/libcurl/opts/CURLINFO_NAMELOOKUP_TIME_T.md
    • docs/libcurl/opts/CURLINFO_NUM_CONNECTS.md
    • docs/libcurl/opts/CURLINFO_OS_ERRNO.md
    • docs/libcurl/opts/CURLINFO_POSTTRANSFER_TIME_T.md
    • docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME.md
    • docs/libcurl/opts/CURLINFO_PRETRANSFER_TIME_T.md
    • docs/libcurl/opts/CURLINFO_PRIMARY_IP.md
    • docs/libcurl/opts/CURLINFO_PRIMARY_PORT.md
    • docs/libcurl/opts/CURLINFO_PRIVATE.md
    • docs/libcurl/opts/CURLINFO_PROTOCOL.md
    • docs/libcurl/opts/CURLINFO_PROXYAUTH_AVAIL.md
    • docs/libcurl/opts/CURLINFO_PROXYAUTH_USED.md
    • docs/libcurl/opts/CURLINFO_PROXY_ERROR.md
    • docs/libcurl/opts/CURLINFO_PROXY_SSL_VERIFYRESULT.md
    • docs/libcurl/opts/CURLINFO_REDIRECT_COUNT.md
    • docs/libcurl/opts/CURLINFO_REDIRECT_TIME.md
    • docs/libcurl/opts/CURLINFO_REDIRECT_TIME_T.md
    • docs/libcurl/opts/CURLINFO_REDIRECT_URL.md
    • docs/libcurl/opts/CURLINFO_REFERER.md
    • docs/libcurl/opts/CURLINFO_REQUEST_SIZE.md
    • docs/libcurl/opts/CURLINFO_RESPONSE_CODE.md
    • docs/libcurl/opts/CURLINFO_RTSP_CLIENT_CSEQ.md
    • docs/libcurl/opts/CURLINFO_RTSP_CSEQ_RECV.md
    • docs/libcurl/opts/CURLINFO_RTSP_SERVER_CSEQ.md
    • docs/libcurl/opts/CURLINFO_RTSP_SESSION_ID.md
    • docs/libcurl/opts/CURLINFO_SCHEME.md
    • docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD.md
    • docs/libcurl/opts/CURLINFO_SIZE_DOWNLOAD_T.md
    • docs/libcurl/opts/CURLINFO_SIZE_UPLOAD.md
    • docs/libcurl/opts/CURLINFO_SIZE_UPLOAD_T.md
    • docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD.md
    • docs/libcurl/opts/CURLINFO_SPEED_DOWNLOAD_T.md
    • docs/libcurl/opts/CURLINFO_SPEED_UPLOAD.md
    • docs/libcurl/opts/CURLINFO_SPEED_UPLOAD_T.md
    • docs/libcurl/opts/CURLINFO_SSL_ENGINES.md
    • docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.md
    • docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME.md
    • docs/libcurl/opts/CURLINFO_STARTTRANSFER_TIME_T.md
    • docs/libcurl/opts/CURLINFO_TLS_SESSION.md
    • docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.md
    • docs/libcurl/opts/CURLINFO_TOTAL_TIME.md
    • docs/libcurl/opts/CURLINFO_TOTAL_TIME_T.md
    • docs/libcurl/opts/CURLINFO_XFER_ID.md
  6. Change #248019

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 08 Nov 2025 17:07:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a5c0dfc19f57da30afd6c3eaf7f44cb2c444e222

    Comments

    CURLINFO_TLS_SSL_PTR.md: remove CURLINFO_TLS_SESSION text
    That option is properly documented in its own page.
    
    Closes #19404

    Changed files

    • docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.md
  7. Change #248020

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 08 Nov 2025 17:09:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d083f529e8eb9bd222093262fe0ef6e39778e2ef

    Comments

    CURLINFO_SCHEME/PROTOCOL: they return the "scheme" for a "transfer"
    Not protocol. Not for connection.
    
    Closes #19403

    Changed files

    • docs/libcurl/opts/CURLINFO_PROTOCOL.md
    • docs/libcurl/opts/CURLINFO_SCHEME.md
  8. Change #248021

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 08 Nov 2025 17:11:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 64489bc3be7bcf69493143c1f1c221e12748e285

    Comments

    CURLOPT_READFUNCTION.md: clarify the size of the buffer
    No need to multiply with size as size is always 1 - and documented so.
    
    Closes #19402

    Changed files

    • docs/libcurl/opts/CURLOPT_HEADERFUNCTION.md
    • docs/libcurl/opts/CURLOPT_READFUNCTION.md
  9. Change #248027

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 08 Nov 2025 17:49:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7e0d4dd4a86e11babfc91c8b7e0caefc7048832c

    Comments

    CURLOPT_SSH_KEYFUNCTION.md: fix minor indent mistake in example

    Changed files

    • docs/libcurl/opts/CURLOPT_SSH_KEYFUNCTION.md