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

Builder curl-unthreaded-solaris10-sparc Build #13883

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf0f0a7f7d61df334e6fa111966c576e036e00bf5
Got Revisionf0f0a7f7d61df334e6fa111966c576e036e00bf5
Changes3 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 27 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 6 hrs, 6 mins, 52 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13883 Build
codebase Build
got_revision f0f0a7f7d61df334e6fa111966c576e036e00bf5 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f0f0a7f7d61df334e6fa111966c576e036e00bf5 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSat Mar 28 19:59:53 2026
EndSun Mar 29 09:27:17 2026
Elapsed12 hrs, 27 mins, 23 secs

All Changes:

:

  1. Change #262625

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 28 Mar 2026 12:20:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 31ec67651acf2ae705b7f096664d38d387d00074

    Comments

    keylog: drop unused/redundant includes and guards
    Closes #21137

    Changed files

    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/curl_quiche.c
    • lib/vquic/vquic-tls.c
    • lib/vtls/keylog.c
  2. Change #262630

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 28 Mar 2026 15:51:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9b01f73ac2f1261eb4306cbf5b860454ce7e3c37

    Comments

    keylog.h: replace literal number with macro in declaration
    Also syncing with the defintion.
    
    Closes #21141

    Changed files

    • lib/vtls/keylog.h
  3. Change #262632

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 28 Mar 2026 15:52:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f0f0a7f7d61df334e6fa111966c576e036e00bf5

    Comments

    boringssl: fix more coexist cases with Schannel/WinCrypt
    By moving the coexist workaround from vtls/openssl.c to vtls/openssl.h.
    This way it also applies to vtls.c (and possibly other sources including
    `vtls/openssl.h`), which may need it in unity builds before BoringSSL
    header `openssl/ssl.h` pulling in the conflicting symbols and causing
    conflicts otherwise.
    
    Seen with build config:
    ```
    -DCURL_USE_SCHANNEL=ON -DCURL_USE_OPENSSL=ON
    -DCMAKE_UNITY_BUILD=ON -DCMAKE_UNITY_BUILD_BATCH_SIZE=30
    ```
    
    Fixing:
    ```
    In file included from _cm-win-boringssl/lib/CMakeFiles/libcurl_object.dir/Unity/unity_5_c.c:7:
    In file included from lib/vtls/vtls.c:54:
    In file included from lib/vtls/openssl.h:33:
    In file included from /path/to/boringssl/_x64-win-ucrt/usr/include/openssl/opensslv.h:18:
    In file included from /path/to/boringssl/_x64-win-ucrt/usr/include/openssl/crypto.h:18:
    /path/to/boringssl/_x64-win-ucrt/usr/include/openssl/base.h:293:29: error: expected ')'
      293 | typedef struct X509_name_st X509_NAME;
          |                             ^
    /path/to/llvm-mingw/x86_64-w64-mingw32/include/wincrypt.h:1515:29: note: expanded from macro 'X509_NAME'
     1515 | #define X509_NAME ((LPCSTR) 7)
          |                             ^
    [...]
    ```
    
    Ref: 2a92c39a218713635768364f801fa13831a019e0 #20567
    
    Closes #21136

    Changed files

    • lib/vtls/openssl.c
    • lib/vtls/openssl.h