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

Builder curl-unthreaded-solaris10-i386 Build #15939

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3752de465d70552106b2527fbf821aee525e53e2
Got Revision3752de465d70552106b2527fbf821aee525e53e2
Changes8 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 56 mins, 49 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave
buildername curl-unthreaded-solaris10-i386 Builder
buildnumber 15939 Build
codebase Build
got_revision 3752de465d70552106b2527fbf821aee525e53e2 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 3752de465d70552106b2527fbf821aee525e53e2 Build
scheduler schedule-curl-unthreaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

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

Timing:

StartSat Nov 8 22:49:13 2025
EndSun Nov 9 07:42:14 2025
Elapsed8 hrs, 53 mins, 0 secs

All Changes:

:

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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
  8. Change #248056

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 08 Nov 2025 22:40:24
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3752de465d70552106b2527fbf821aee525e53e2

    Comments

    pytest: skip H2 tests if feature missing from curl
    To allow running pytests on more curl configurations.
    
    Also delete a redundant H3 feature check from test_17_14_expired_cert.
    
    Cherry-picked from #19407
    Closes #19412

    Changed files

    • tests/http/test_01_basic.py
    • tests/http/test_02_download.py
    • tests/http/test_03_goaway.py
    • tests/http/test_04_stuttered.py
    • tests/http/test_05_errors.py
    • tests/http/test_07_upload.py
    • tests/http/test_08_caddy.py
    • tests/http/test_09_push.py
    • tests/http/test_10_proxy.py
    • tests/http/test_13_proxy_auth.py
    • tests/http/test_14_auth.py
    • tests/http/test_16_info.py
    • tests/http/test_17_ssl_use.py
    • tests/http/test_18_methods.py
    • tests/http/test_19_shutdown.py
    • tests/http/test_40_socks.py