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

Builder curl-threaded-solaris10-i386 Build #2745

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 12 mins, 49 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 11 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 2745 Build
codebase Build
got_revision eb77297ccc9a19d1830d7640e4281710841829da Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision eb77297ccc9a19d1830d7640e4281710841829da Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing

Timing:

StartSun Oct 13 23:18:42 2024
EndMon Oct 14 01:47:23 2024
Elapsed2 hrs, 28 mins, 41 secs

All Changes:

:

  1. Change #211552

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 13 Oct 2024 23:10:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aa43b424619df32ac3f441d3f564cb3d10919582

    Comments

    curl-rustls.m4: set linker flags to allow rustls build on macos
    Assisted-by: Viktor Szakats
    Closes #15175

    Changed files

    • m4/curl-rustls.m4
  2. Change #211553

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 13 Oct 2024 23:11:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 513904c264e336d559fe634264342607aa75d38e

    Comments

    wolfSSL: fix handling of TLSv1.3 sessions
    Register a callback to get notified of new SSL sessions by wolfSSL.
    Remove the explicit session retrieval after handshake, since this does
    not work for TLSv1.3.
    
    Adjust test expectations now that TLSv1.3 session resumption works
    in wolfSSL.
    
    Closes #15243

    Changed files

    • lib/vtls/wolfssl.c
    • tests/http/test_17_ssl_use.py
  3. Change #211554

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 13 Oct 2024 23:13:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3455d360ce146e1cbdb4e5d5e219cbbc5b3516f5

    Comments

    mbedTLS: fix handling of TLSv1.3 sessions
    For TLSv1.3, if supported, observer special return code to retrieve
    newly arrived session from mbedTLS.
    
    Adjust test expectations now that TLSv1.3 session resumption works in
    mbedTLS >= 3.6.0.
    
    Based on #14135 by @ad-chaos
    Closes #15245

    Changed files

    • lib/vtls/mbedtls.c
    • tests/http/test_17_ssl_use.py
  4. Change #211555

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Sun 13 Oct 2024 23:15:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a7ccd026141772d98b46a06c92fc0a4c814865d5

    Comments

    ftp: move listen handling to socket filter
    Move the listen/accept handling of the FTP active data connection
    into the socket filter and monitor 'connected' status of that as
    with passive connections - more or less.
    
    The advantage is that the socket filter now reports being connected
    only when the server has actually called and accept() has been done.
    This enables to bootstrap the filter chain on the data connection
    just like any other. A require SSL filter can then be added right
    at the start and does not need to be patched in later.
    
    Still, the active connection keeps on needing special handling in
    ftp.c as the control connection needs to be monitored while waiting
    as the server might send error responses this way. So, things did
    not turn out quite as squeaky clean as hoped for, but still seems
    better to do that way.
    
    Closes #14798

    Changed files

    • lib/cf-socket.c
    • lib/cf-socket.h
    • lib/ftp.c
  5. Change #211556

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 13 Oct 2024 23:16:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision eb77297ccc9a19d1830d7640e4281710841829da

    Comments

    lib: move curl_path.[ch] into vssh/
    As this contains code only used by SSH backends.
    
    Closes #15284

    Changed files

    • lib/Makefile.inc
    • lib/curl_path.c
    • lib/curl_path.h
    • lib/vssh/curl_path.c
    • lib/vssh/curl_path.h
    • tests/unit/unit2604.c