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

Builder curl-unthreaded-solaris11-sparc Build #4068

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 17 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 25 mins, 28 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 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 4068 Build
codebase Build
got_revision 739c09c8a4111b3ee00b0004f5a3f67e00ba3aeb Git
osplatform SPARC 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-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:

StartMon Jun 16 12:37:35 2025
EndMon Jun 16 13:58:59 2025
Elapsed1 hrs, 21 mins, 23 secs

All Changes:

:

  1. 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
  2. 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