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

Builder curl-ares-solaris10-sparc Build #2893

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3d302250ec1b6149f1d75dfb4910e567f3bb07de
Got Revision3d302250ec1b6149f1d75dfb4910e567f3bb07de
Changes7 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Pino Toscano
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Jul 21 03:47:58 2025
EndMon Jul 21 22:36:06 2025
Elapsed18 hrs, 48 mins, 8 secs

All Changes:

:

  1. Change #240216

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 20 Jul 2025 12:03:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f2d1d4747db8ae4240c022b5c647782e07cbb264

    Comments

    GHA/macos: drop redundant build option
    Follow-up to 7c23e88d17e0939b4e01c8d05f430e167e148f4b #17973

    Changed files

    • .github/workflows/macos.yml
  2. Change #240217

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 20 Jul 2025 12:03:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bf9d9fe0bd43757c1ac32129678c6321b5559a42

    Comments

    multissl: initialize when requesting a random number
    To fix test 1308 in MultiSSL builds.
    
    Failure was caused by the random number generator virtual function being
    NULL, instead of pointing to the implementation in the runtime-selected
    TLS backend. This could happen in MultiSSL builds when a functionality
    was asking for a random number without triggering a VTLS function table
    initialization first. Such functionality is MIME, or form data via MIME.
    
    The reason CI did not catch it in an earlier MultiSSL GHA/windows job,
    is that it was a debug-enabled one. In debug-enabled builds the test
    runner was overriding the random number generator for all tests.
    
    Fixed this by moving the override to the tests requiring it, via
    1fcf22585fa3d87a50c9dddc688d962978c0c120 #17971, enabling debug builds
    to catch this issue.
    
    Enable MultiSSL in two CI jobs, to verify this patch.
    
    Fixing:
    ```
    test 1308...[formpost tests]
    
    libtests returned 44, when expecting 0
     1308: exit FAILED
    [...]
    === Start of file stderr1308
     URL: log/3/test-1308
     tests/libtest/lib1308.c:70 Assertion 'res == 0' FAILED: curl_formget returned error
     tests/libtest/lib1308.c:72 Assertion 'total_size == 518' FAILED: curl_formget got wrong size back
     tests/libtest/lib1308.c:88 Assertion 'res == 0' FAILED: curl_formget returned error
     tests/libtest/lib1308.c:89 Assertion 'total_size == 899' FAILED: curl_formget got wrong size back
    ```
    Ref: https://github.com/curl/curl/actions/runs/16387693424/job/46309536359?pr=17963#step:16:2515
    
    Bug: https://github.com/curl/curl/pull/17963#issuecomment-3092282057
    
    Closes #17970

    Changed files

    • .github/workflows/linux.yml
    • .github/workflows/macos.yml
    • lib/vtls/vtls.c
  3. Change #240253

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 20 Jul 2025 23:10:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a15a5f4d29c1e7bb4ada2aef9b40558c41aae146

    Comments

    vquic-tls: fix SSL backend type for QUIC connections using gnutls
    Fix the copy&paste error when querying ssl info for gnutls
    on QUIC connections.
    
    Reported-by: Harry Sintonen
    Closes #17976

    Changed files

    • lib/vquic/vquic-tls.c
  4. Change #240254

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 20 Jul 2025 23:11:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 960fb4924523a853d5de8f3062b0776104847311

    Comments

    easy handle: check validity on external calls
    In each external API function passing a `CURL *` into the library, check
    `GOOD_EASY_HANDLE()` if its magic is still there.
    
    Ref: #17957
    Closes #17958

    Changed files

    • lib/easy.c
    • lib/ws.c
  5. Change #240255

    Category curl
    Changed by Pino Toscano <toscano.pinoohnoyoudont@tiscali.it>
    Changed at Sun 20 Jul 2025 23:13:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bed83d9d3323bd007a3475c19b1907b8ec2d80bb

    Comments

    build: enable _GNU_SOURCE on GNU/Hurd
    Unconditionally enable _GNU_SOURCE when building on GNU/Hurd; this way
    it is possible to properly use/rely on GNU extensions e.g. accept4(),
    memrchr(), and the GNU strerror_r().
    
    Closes #17975

    Changed files

    • CMakeLists.txt
    • configure.ac
  6. Change #240256

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 20 Jul 2025 23:15:11
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 53e5cdc47b0024e009ec70f9803e5053b84d87b2

    Comments

    pytest: increase server KeepAliveTimeout
    When CI is not able to give clients enough cpu, the default Apache
    KeepAliveTimeout of 5 seconds may trigger and cause tests to fail.
    
    Increase the timeout to 30 seconds for reliability.
    
    Ref: #17963
    Closes #17968

    Changed files

    • tests/http/testenv/httpd.py
  7. Change #240257

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 20 Jul 2025 23:17:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3d302250ec1b6149f1d75dfb4910e567f3bb07de

    Comments

    multi event: remove only announced
    When a socket is closed, only inform the application
    socket callback about it if the socket had been announced
    before to the callback.
    
    Reported-by: yaoy6 on github
    Fixes #17949
    Closes #17950

    Changed files

    • lib/multi_ev.c