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

Builder curl-threaded-solaris10-i386 Build #3516

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 2 hrs, 51 mins, 43 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 6 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 3516 Build
codebase Build
got_revision cde81e4398f2944e60c73f38823dafa305a5a2f4 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision cde81e4398f2944e60c73f38823dafa305a5a2f4 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. Viktor Szakats

Timing:

StartMon Jun 16 12:36:41 2025
EndMon Jun 16 21:20:50 2025
Elapsed8 hrs, 44 mins, 8 secs

All Changes:

:

  1. Change #236760

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

    Comments

    tests/libtest: merge `MEMPTR` into `UTILS`
    Follow-up to ee066732963b7051a8d2fd56fa91a4ce0b444bd5 #17628
    
    Closes #17633

    Changed files

    • tests/libtest/CMakeLists.txt
    • tests/libtest/Makefile.am
    • tests/libtest/Makefile.inc
  2. Change #236761

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

    Comments

    mk-unity: include the embedded source name in the output
    Closes #17634

    Changed files

    • scripts/mk-unity.pl
  3. 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