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

Builder curl-threaded-solaris10-sparc Build #2915

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7c23e88d17e0939b4e01c8d05f430e167e148f4b
Got Revision7c23e88d17e0939b4e01c8d05f430e167e148f4b
Changes5 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 43 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 23 mins, 22 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 mins, 28 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Sergio Durigan Junior
  2. Viktor Szakats

Timing:

StartSun Jul 20 00:54:37 2025
EndSun Jul 20 17:05:00 2025
Elapsed16 hrs, 10 mins, 22 secs

All Changes:

:

  1. Change #240172

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 19 Jul 2025 21:30:32
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 1fcf22585fa3d87a50c9dddc688d962978c0c120

    Comments

    tests: set `CURL_ENTROPY` per test, not globally
    Setting `CURL_ENTROPY` in debug-enabled builds overrides the code paths
    responsible for random number generation. To avoid masking issue there,
    this patch moves `CURL_ENTROPY` settings to each test that requires it,
    and stop setting it by default for all tests (in `runner.pm`).
    
    This makes it possible to catch random generator issues in debug-enabled
    builds; extending test coverage.
    
    To keep offering a well-defined state for tests, make `runner.pm` delete
    the `CURL_ENTROPY` env, if present.
    
    Ref: #17970
    
    Closes #17971

    Changed files

    • tests/data/test1972
    • tests/data/test2300
    • tests/data/test2301
    • tests/data/test2302
    • tests/data/test2303
    • tests/data/test2304
    • tests/data/test823
    • tests/data/test869
    • tests/data/test907
    • tests/runner.pm
  2. Change #240183

    Category curl
    Changed by Sergio Durigan Junior <sergiodjohnoyoudont@sergiodj.net>
    Changed at Sat 19 Jul 2025 22:37:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7d1ca2e7e1a3b9d3ba70f587f6bc5e83f905afd5

    Comments

    test1560: skip some URLs if UTF-8 is not supported
    Debian CI found that `lib1560` implements tests that will fail when
    UTF-8 isn't supported.  We can detect that with `nl_langinfo` and skip
    the specific URLs that fail (i.e., those whose `getflags` are either
    `CURLU_PUNYCODE` or `CURLU_PUNY2IDN`).
    
    Co-authored-by: Viktor Szakats
    Closes #17933

    Changed files

    • tests/libtest/lib1560.c
    • tests/runtests.pl
  3. Change #240184

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 19 Jul 2025 22:37:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 319d27e5682675208ee81174d192b8ec5abe82bb

    Comments

    GHA/macos: add Rustls, aws-lc jobs
    Bind them to the (arbitrary choice of) Apple clang and gcc compilers,
    respectively.
    
    Also:
    - bind existing mbedTLS job to the llvm compiler, to keep the number of
      jobs the same as before this patch.
    - move OpenLDAP from mbedTLS over to LibreSSL to keep testing it with
      all 3 compilers.
    - simplify exclusions for clang-tidy and torture jobs.
    - tag clang-tidy and torture jobs via `install_steps`.
      To avoid keeping around special bool fields.
    
    Closes #17963

    Changed files

    • .github/workflows/macos.yml
  4. Change #240185

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 19 Jul 2025 22:37:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3fd8846680e4c0915e22bbce654264973ec3daf6

    Comments

    cmake: make `runtests` targets build the curl tool
    To allow running tests just by building the `test-full` (or similar) in
    a single step.
    
    Closes #17967

    Changed files

    • CMakeLists.txt
    • src/CMakeLists.txt
    • tests/CMakeLists.txt
  5. Change #240198

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 20 Jul 2025 00:02:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7c23e88d17e0939b4e01c8d05f430e167e148f4b

    Comments

    GHA/macos: enable QUIC API with OpenSSL
    In one autotools and one cmake job.
    
    Also:
    - enable OpenSSL QUIC in two more jobs.
    - pytest: add checks to skip h3 tests when there is no h3 server to
      tests 26, 27a, 27b, 27c, 29 in test_02_download. Fixing:
      ```
      FAILED tests/http/test_02_download.py::TestDownload::test_02_26_session_shared_reuse[h3] - AssertionError: expected exit code 0, got 1
      [...]
      ```
      Ref: https://github.com/curl/curl/actions/runs/16392680316/job/46320739635?pr=17973
    
    Ref: https://github.com/Homebrew/homebrew-core/pull/230515
    Ref: https://github.com/Homebrew/homebrew-core/commit/6c8e3eed129ed362da8b97b94f1a5372b2289e09
    
    Closes #17973

    Changed files

    • .github/workflows/macos.yml
    • tests/http/test_02_download.py