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

Builder curl-threaded-solaris11-sparc Build #4402

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision80c10c5d5dda78c471924b251e9db59d653aba1e
Got Revision80c10c5d5dda78c471924b251e9db59d653aba1e
Changes2 changes

BuildSlave:

unstable11s

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris11-sparc' triggered this build

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 26 mins, 53 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 4402 Build
codebase Build
got_revision 80c10c5d5dda78c471924b251e9db59d653aba1e Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 80c10c5d5dda78c471924b251e9db59d653aba1e Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartFri Aug 22 16:02:52 2025
EndFri Aug 22 17:29:13 2025
Elapsed1 hrs, 26 mins, 21 secs

All Changes:

:

  1. Change #243610

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 22 Aug 2025 15:53:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3298a43133d5af056e407a5aad6708c5423b55d5

    Comments

    spelling: file system
    Closes #18348

    Changed files

    • .github/scripts/spellcheck.words
    • docs/cmdline-opts/_EXITCODES.md
    • docs/examples/unixsocket.c
    • docs/internals/TLS-SESSIONS.md
    • docs/libcurl/libcurl-security.md
    • docs/libcurl/opts/CURLOPT_UNIX_SOCKET_PATH.md
    • lib/url.c
    • lib/vtls/mbedtls.c
    • lib/vtls/wolfssl.c
    • scripts/randdisable
    • src/tool_help.c
    • tests/data/test1443
    • tests/data/test1444
    • tests/data/test1462
    • tests/libtest/test613.pl
  2. Change #243611

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 22 Aug 2025 15:53:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 80c10c5d5dda78c471924b251e9db59d653aba1e

    Comments

    openssl: remove legacy cruft, document macro guards
    - assume:
      - `BIO_CTRL_EOF`
      - `SSL_CTRL_SET_MSG_CALLBACK`
      - `SSL_CTRL_SET_MSG_CALLBACK`
      - `SSL_CTRL_SET_TLSEXT_HOSTNAME`
      - `SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER`
      - `SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS`
      - `SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG`
      - `SSL_OP_NO_COMPRESSION`
      - `SSL_OP_NO_TICKET`
      - `X509_V_FLAG_PARTIAL_CHAIN`
      - `X509_V_FLAG_TRUSTED_FIRST`
      They are present in all supported OpenSSL (and fork) versions.
    
    - replace `SSL_ERROR_WANT_EARLY` with `SSL_ERROR_WANT_CLIENT_HELLO_CB`.
      The former appeared in OpenSSL 1.1.1-dev, but renamed before
      the stable release.
    
    - document support for macros:
      - `ENGINE_CTRL_GET_CMD_FROM_NAME`
      - `SSL_ERROR_WANT_ASYNC_JOB`
      - `SSL_ERROR_WANT_ASYNC`
      - `SSL2_VERSION_MAJOR`
      - `TLS1_3_VERSION`
    
    - drop legacy fallback for `CONF_MFLAGS_DEFAULT_SECTION`.
      It was there for OpenSSL 0.9.8 support.
    
    - fix `SSL_CTRL_SET_MSG_CALLBACK` accidentally serving as a guard for
      OpenSSL (and forks) as a whole.
    
    Tested OK with OpenSSL 1.0.2 and 1.1.0 in CI.
    
    Closes #18351

    Changed files

    • lib/vquic/curl_osslq.c
    • lib/vtls/openssl.c