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

Builder curl-unthreaded-solaris10-sparc Build #13269

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision63a8167f3ecca88f924226a9a355a41dff975eee
Got Revision63a8167f3ecca88f924226a9a355a41dff975eee
Changes4 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 2 mins, 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 36 mins, 40 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 13269 Build
codebase Build
got_revision 63a8167f3ecca88f924226a9a355a41dff975eee Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 63a8167f3ecca88f924226a9a355a41dff975eee 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:

StartFri Jul 25 04:59:55 2025
EndFri Jul 25 20:38:49 2025
Elapsed15 hrs, 38 mins, 54 secs

All Changes:

:

  1. Change #240567

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 24 Jul 2025 14:31:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 28f4d7df0691fad2d2fe459072a0446e3cdb763f

    Comments

    windows: drop unused `curlx/version_win32.h` includes
    - lib/connect.c: unused since:
      71b7e0161032927cdfb4e75ea40f65b8898b3956 #10141
    
    - lib/curl_sspi.c: unused since:
      0d71b18153c8edb996738f8a362373fc72d0013b #17413
    
    Cherry-picked from #18009
    Closes #18011

    Changed files

    • lib/connect.c
    • lib/curl_sspi.c
  2. Change #240594

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 24 Jul 2025 23:49:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 043da5a6e678d8aba0cd1c783d1cd60330c6b7d0

    Comments

    curl_setup.h: move UWP detection after `config-win32.h` (revert)
    This change wasn't good because `config-win32.h` does rely on the UWP
    detection result to set `USE_WIN32_CRYPTO` and LDAP macros. While it
    fixed one issue, it created another.
    
    It seems better to revert, and focus on reducing and/or eventually
    dropping the logic within `config-win32.h` that alters `_WIN32_WINNT`.
    It may not be necessary anymore with a minimum of VS2008 (soon VS2010).
    The logic is also absent from cmake builds, without causing issues.
    
    Could affect UWP winbuild/project-file builds. These are theoretical
    builds because neither build method is prepared to target UWP.
    
    Reverts 792a61e2047782b85da0332cf298a747ce11e8e6 #17980
    Ref: https://github.com/curl/curl/pull/17980#issuecomment-3114462492
    
    Closes #18014

    Changed files

    • lib/curl_setup.h
  3. Change #240595

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 24 Jul 2025 23:49:37
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7d8d5cf876b8af28234c382d318517cca4a26032

    Comments

    windows: include `wincrypt.h` before `iphlpapi.h` for mingw-w64 <6
    Required for mingw-w64 5.x (and older) builds targeting a Windows 7+.
    
    mingw-w64 6+ fixed `mprapi.h` (included indirectly via `iphlpapi.h`)
    to include `wincrypt.h` for the missing types.
    
    MSVC is not affected because SDK 7.1a (the oldest MS SDK curl supports),
    `mprapi.h` does include `wincrypt.h`.
    
    Make sure to include `wincrypt.h` before including `iphlpapi.h` as
    a workaround. `wincrypt.h` is used unconditionally even though it's
    not available in UWP. This is safe in this context, because we use
    `iphlpapi.h` for `if_nametoindex`, which is not supported and used
    in UWP builds.
    
    This fixes auto-detection that missed detecting `if_nametoindex` in
    the affected combination, and this build error in non-unity builds:
    ```
    In file included from D:/my-cache/mingw32/i686-w64-mingw32/include/iprtrmib.h:9:0,
                     from D:/my-cache/mingw32/i686-w64-mingw32/include/iphlpapi.h:17,
                     from D:/a/curl/curl/lib/url.c:63:
    D:/my-cache/mingw32/i686-w64-mingw32/include/mprapi.h:865:3: error: unknown type name 'CERT_NAME_BLOB'
       CERT_NAME_BLOB *certificateNames;
       ^~~~~~~~~~~~~~
    D:/my-cache/mingw32/i686-w64-mingw32/include/mprapi.h:887:3: error: unknown type name 'CRYPT_HASH_BLOB'
       CRYPT_HASH_BLOB certBlob;
       ^~~~~~~~~~~~~~~
    ```
    Ref: https://github.com/curl/curl/actions/runs/16497057672/job/46645264552?pr=18012#step:10:140
    
    This combination is not normally tested in CI. It was caught in
    the `dl-mingw, CM 6.4.0-i686 schannel !unity Win7` job while working
    on another PR.
    
    Follow-up to 0d71b18153c8edb996738f8a362373fc72d0013b #17413
    Ref: #18009
    Closes #18012

    Changed files

    • CMakeLists.txt
    • configure.ac
    • lib/url.c
  4. Change #240607

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Fri 25 Jul 2025 03:10:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 63a8167f3ecca88f924226a9a355a41dff975eee

    Comments

    CODE_STYLE: sync with recent `checksrc.pl` updates
    Follow-up to ef2ccf862f8fbfe5cb86cb716aead57694a95ef5 #17840
    Follow-up to f9656445ba275efca02994808f1a89cf055e5e44 #17764
    
    Closes #18015

    Changed files

    • docs/internals/CODE_STYLE.md