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

Builder curl-unthreaded-solaris11-sparc Build #4224

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 28 mins, 10 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSun Jul 20 12:13:18 2025
EndSun Jul 20 13:37:39 2025
Elapsed1 hrs, 24 mins, 21 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