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

Builder curl-threaded-solaris11-i386 Build #3779

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartWed Jul 30 02:59:20 2025
EndWed Jul 30 05:35:55 2025
Elapsed2 hrs, 36 mins, 35 secs

All Changes:

:

  1. Change #241233

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 30 Jul 2025 02:38:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 00887aee8ca0efe0b40fa41b2a36e2d853d49b57

    Comments

    tests: merge clients into libtests, drop duplicate code
    libtests and clients were built the same way after recent overhauls.
    libtests are used by runtests, clients by pytests.
    
    Merge clients into libtests, aligning their entry function signature,
    dropping common utility functions, and simplifying the build.
    
    Note: After this patch `CURLDEBUG` applies to cli tests, when enabled.
    
    Also:
    - lib552: drop local copy-paste debug callback in favor of testtrace.
    - lib552: drop local copy-paste dump function in favor of testtrace.
    - clients: use `long` for HTTP version, drop casts.
    - clients: replace local dump function in favor of testrace clone.
    - sync cli test entry function prototype with libtests'.
    - h2_serverpush: replace local trace callback with testtrace.
    - de-duplicate 3 websocket close, ping, ping, functions. Kept the pong
      iteration from `ws_pingpong`. Note: the pong clone in `lib2304` was
      returning an error when `curl_ws_recv()` returned non-zero and
      the payload matched the expected one anyway. After this patch, this
      case returns success, as it does in `ws_pingpong`.
      `lib2304` keeps passing, but I'm not sure if the previous behavior
      was intentional.
    - display full value in websocket close, ping, pong, drop casts.
    
    Closes #18079

    Changed files

    • .github/workflows/windows.yml
    • configure.ac
    • tests/CMakeLists.txt
    • tests/Makefile.am
    • tests/client/.gitignore
    • tests/client/CMakeLists.txt
    • tests/client/Makefile.am
    • tests/client/Makefile.inc
    • tests/client/first.c
    • tests/client/first.h
    • tests/client/h2_pausing.c
    • tests/client/h2_serverpush.c
    • tests/client/h2_upgrade_extreme.c
    • tests/client/hx_download.c
    • tests/client/hx_upload.c
    • tests/client/tls_session_reuse.c
    • tests/client/upload_pausing.c
    • tests/client/ws_data.c
    • tests/client/ws_pingpong.c
    • tests/http/Makefile.am
    • tests/http/test_02_download.py
    • tests/http/test_07_upload.py
    • tests/http/test_08_caddy.py
    • tests/http/test_09_push.py
    • tests/http/test_17_ssl_use.py
    • tests/http/test_19_shutdown.py
    • tests/http/test_20_websockets.py
    • tests/http/testenv/client.py
    • tests/libtest/Makefile.inc
    • tests/libtest/cli_h2_pausing.c
    • tests/libtest/cli_h2_serverpush.c
    • tests/libtest/cli_h2_upgrade_extreme.c
    • tests/libtest/cli_hx_download.c
    • tests/libtest/cli_hx_upload.c
    • tests/libtest/cli_tls_session_reuse.c
    • tests/libtest/cli_upload_pausing.c
    • tests/libtest/cli_ws_data.c
    • tests/libtest/cli_ws_pingpong.c
    • tests/libtest/first.c
    • tests/libtest/first.h
    • tests/libtest/lib1515.c
    • tests/libtest/lib1522.c
    • tests/libtest/lib1540.c
    • tests/libtest/lib1542.c
    • tests/libtest/lib1553.c
    • tests/libtest/lib1915.c
    • tests/libtest/lib2301.c
    • tests/libtest/lib2304.c
    • tests/libtest/lib2502.c
    • tests/libtest/lib2700.c
    • tests/libtest/lib3033.c
    • tests/libtest/lib500.c
    • tests/libtest/lib552.c
    • tests/libtest/lib573.c
    • tests/libtest/lib753.c
    • tests/libtest/testtrace.c
    • tests/libtest/testtrace.h
  2. Change #241234

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 30 Jul 2025 02:38:14
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision daa5b044b8dc9e14f9393e4d73da8732fb647276

    Comments

    cmake: defer building `unitprotos.h` till a test target needs it
    Follow-up to c9bb9cd165c1b25c2fe005befdcfe479fc9b68e1 #17750
    Ref: https://github.com/curl/curl/pull/17750#issuecomment-3133749477
    Closes #18086

    Changed files

    • lib/CMakeLists.txt