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

Builder curl-unthreaded-solaris11-i386 Build #3604

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb
Got Revision739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb
Changes3 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 3 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-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 3604 Build
codebase Build
got_revision 739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jun 16 12:38:56 2025
EndMon Jun 16 15:45:28 2025
Elapsed3 hrs, 6 mins, 31 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