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

Builder curl-ares-solaris10-i386 Build #3481

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 53 mins, 38 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-ares-solaris10-i386 slave
buildername curl-ares-solaris10-i386 Builder
buildnumber 3481 Build
codebase Build
got_revision 6d00b06e167c4a19a561731ca4210fe2d625f312 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 6d00b06e167c4a19a561731ca4210fe2d625f312 Build
scheduler schedule-curl-ares-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jun 16 18:28:56 2025
EndTue Jun 17 03:05:04 2025
Elapsed8 hrs, 36 mins, 7 secs

All Changes:

:

  1. Change #236764

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Jun 2025 09:35:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision cde81e4398f2944e60c73f38823dafa305a5a2f4

    Comments

    memdebug: include in unity batch
    Before this patch `memdebug.c` was compiled as a separate source in
    unity builds. This was necessary because `memdebug.c` failed to compile
    if `memdebug.h` was included before it, in `CURLDEBUG` mode. This patch
    fixes this issue and allows to compile `memdebug.c` as part of the unity
    source batch. This removes an exception and makes builds perform a notch
    better.
    
    - introduce `CURL_SCLOSE()` macro as an immutable synonym of `sclose()`.
    - memdebug: replace `sclose()` reference with `CURL_SCLOSE()` to compile
      as expected when `sclose()` is overridden by `memdebug.h`.
    - memdebug: make it not break when including `memdebug.h` before it in
      `CURLDEBUG` mode. Do this by calling low-level functions as
      `(function)`.
    - autotools, cmake: drop memdebug exception, include it like any other
      source file. This is now possible because `memdebug.c` doesn't break
      if `memdebug.h` was included before it, in `CURLDEBUG` builds.
    - mk-unity: drop `--exclude` option. No longer used after this patch.
    - drop `MEMDEBUG_NODEFINES` macro hack. No longer necessary.
    
    Ref: #16747
    Closes #16746
    Closes #16738
    Closes #17631

    Changed files

    • lib/CMakeLists.txt
    • lib/Makefile.am
    • lib/curl_memory.h
    • lib/curl_setup_once.h
    • lib/memdebug.c
    • lib/memdebug.h
    • scripts/mk-unity.pl
  2. Change #236779

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Jun 2025 12:29:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6828009695a951195efbd6def3856feaa0e769fd

    Comments

    windows: fixup `fopen()` in `CURLDEBUG` builds
    Introduce an immutable `CURL_FOPEN()` macro to store the `fopen()`
    mapping on Windows. Then use that instead `(fopen)` from `memdebug.c`.
    It makes CURLDEBUG builds use the correct `fopen` wrapper on Windows.
    This macro is only defined on Windows, as of this patch.
    
    This is necessary after cde81e4398f2944e60c73f38823dafa305a5a2f4,
    which no longer applies the default `fopen()` override to `memdebug.c`.
    
    Also:
    - curl_setup.h: de-dupe, simplify Windows file I/O function overrides.
    - curl_memory.h: fix to reset `fopen` to `curlx_win32_fopen()` on
      Windows. Before this patch it reset it to stock `fopen()`.
    
    Follow-up to cde81e4398f2944e60c73f38823dafa305a5a2f4 #17631
    
    Closes #16747

    Changed files

    • lib/curl_memory.h
    • lib/curl_setup.h
    • lib/memdebug.c
  3. Change #236780

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Jun 2025 12:29:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb

    Comments

    tests: bundle http clients, de-dupe, enable for MSVC
    To make building the http client tests faster, with no duplication, by
    using the build method that other test binaries already use.
    
    The difference compared to other tests is that these don't use internal
    libcurl headers or code. With the exception of `curl_config.h`, for
    a feature macro.
    
    Before this patch, these tests were built like examples.
    
    Also:
    - de-duplicate code and give unique names to colliding symbols.
    - add local getopt implementation and enable all code for MSVC.
      Adapted for curl via Public Domain source:
      https://github.com/skeeto/getopt/blob/4e618ef782dc80b2cf0307ea74b68e6a62b025de/getopt.h
      Credits-to: Christopher Wellons
      Thanks!
    
    Closes #17627

    Changed files

    • scripts/mk-unity.pl
    • tests/CMakeLists.txt
    • tests/http/clients/.gitignore
    • tests/http/clients/CMakeLists.txt
    • tests/http/clients/Makefile.am
    • tests/http/clients/Makefile.inc
    • tests/http/clients/first.c
    • tests/http/clients/first.h
    • tests/http/clients/h2-pausing.c
    • tests/http/clients/h2-serverpush.c
    • tests/http/clients/h2-upgrade-extreme.c
    • tests/http/clients/h2_pausing.c
    • tests/http/clients/h2_serverpush.c
    • tests/http/clients/h2_upgrade_extreme.c
    • tests/http/clients/hx-download.c
    • tests/http/clients/hx-upload.c
    • tests/http/clients/hx_download.c
    • tests/http/clients/hx_upload.c
    • tests/http/clients/tls-session-reuse.c
    • tests/http/clients/tls_session_reuse.c
    • tests/http/clients/upload-pausing.c
    • tests/http/clients/upload_pausing.c
    • tests/http/clients/ws-data.c
    • tests/http/clients/ws-pingpong.c
    • tests/http/clients/ws_data.c
    • tests/http/clients/ws_pingpong.c
    • 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
  4. Change #236788

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 16 Jun 2025 13:04:03
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 62349e45a818e50b5cdcd017c149f9dc87fce9fe

    Comments

    multi: fix polling with pending input
    When multi creates the pollset of a transfer, it checks now if
    a connection (FIRST/SECONDARY) socket waits on POLLIN and has input data
    pending in filters (relevant to OpenSSL's new read ahead). If so, it
    triggers a timeout on the transfer via EXPIRE_RUN_NOW.
    
    This fixes sporadic stalls in test 988 when running event based.
    
    Closes #17636

    Changed files

    • lib/cfilters.c
    • lib/cfilters.h
    • lib/multi.c
  5. Change #236795

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Jun 2025 14:13:40
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6d00b06e167c4a19a561731ca4210fe2d625f312

    Comments

    GHA/windows: avoid libtool wrapper for `tunits`
    To sync it with other test binaries.
    
    Closes #17640

    Changed files

    • .github/workflows/windows.yml