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

Builder curl-unthreaded-solaris10-sparc Build #13207

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 32 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 18 mins, 44 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13207 Build
codebase Build
got_revision 253e1e94c66a01299308b23d5abf56a67dda61be Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 253e1e94c66a01299308b23d5abf56a67dda61be Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jun 16 07:33:32 2025
EndMon Jun 16 23:41:26 2025
Elapsed16 hrs, 7 mins, 53 secs

All Changes:

:

  1. Change #236695

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 15 Jun 2025 18:44:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3186a20483b4c829cb211d48393285ecc95c4273

    Comments

    build: drop `HAVE_SYS_SOCKET_H` and `HAVE_SYS_TIME_H` macros
    Both are available with well-known conditions, under non-Windows, and
    `curl/curl.h` already uses them. `sys/time.h` is also necessary for
    mingw-w64 for `gettimeofday()`.
    
    Follow-up to 56d5982312f8360b020738cbfeefe7990991550e #17522
    
    Closes #17581

    Changed files

    • CMake/CurlTests.c
    • CMake/OtherTests.cmake
    • CMake/unix-cache.cmake
    • CMakeLists.txt
    • acinclude.m4
    • configure.ac
    • lib/config-mac.h
    • lib/config-os400.h
    • lib/config-plan9.h
    • lib/config-riscos.h
    • lib/config-win32.h
    • lib/curl_config.h.cmake
    • lib/curl_setup_once.h
    • lib/curlx/inet_ntop.h
    • lib/curlx/inet_pton.h
    • lib/setup-win32.h
    • m4/curl-functions.m4
    • tests/libtest/lib1960.c
  2. Change #236721

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

    Comments

    build: sync tests unity builds between cmake and autotools
    Instead of relying on CMake's built-in unity feature, use `mk-unity.pl`,
    as already done with autotools. It simplified the build, shortens logs
    and makes debugging easier because of the fewer build variations.
    It also allows testing / fixing with cmake and those automatically apply
    to autotools builds too. cmake builds can be much-much faster, esp.
    when working the builds themselves.
    
    It also enables "unity" in old cmake versions. Basically every test
    target is a single generated .c source.
    
    Also:
    - drop a `lib` unity workaround for libtests with autotools after fixing
      the issue in libtests itself. It drops a few exceptions and makes
      libcurl build faster (in autotools unity).
    - fix another `lib` autotools unity issue and drop the workaround for it
      from `mk-unity.pl`. `srcdir` was missing from the header path.
    - simplify `mk-unity.pl` command-lines, drop exclusions.
    
    Follow-up to 2c27a67daa1b76859c18d63e4e1f528db05b5e13 #17590
    
    Closes #17628

    Changed files

    • docs/examples/CMakeLists.txt
    • lib/Makefile.am
    • scripts/mk-unity.pl
    • tests/libtest/CMakeLists.txt
    • tests/libtest/Makefile.am
    • tests/server/CMakeLists.txt
    • tests/server/Makefile.am
    • tests/tunit/CMakeLists.txt
    • tests/unit/CMakeLists.txt
  3. Change #236724

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

    Comments

    tests/server: drop memdebug option
    I added it just in case when removing enabled-by-default memdebug
    from test servers. Apparently it broke after recent changes. It's
    probably not a widely used feature and does not seem to be worth fixing.
    It creates odd dependencies as the error message indicates:
    
    ```
    [28/54] Building C object tests/server/CMakeFiles/servers.dir/__/__/lib/memdebug.c.obj
    FAILED: tests/server/CMakeFiles/servers.dir/__/__/lib/memdebug.c.obj
    [...]
    lib/memdebug.c: In function 'curl_dbg_log':
    lib/memdebug.c:465:12: error: implicit declaration of function 'mvsnprintf'; did you mean 'vsnprintf'? [-Wimplicit-function-declaration]
      465 |   nchars = mvsnprintf(buf, sizeof(buf), format, ap);
          |            ^~~~~~~~~~
          |            vsnprintf
    lib/memdebug.c:465:12: warning: nested extern declaration of 'mvsnprintf' [-Wnested-externs]
    ```
    
    This patch is dropping these build options:
    - cmake: `ENABLE_SERVER_DEBUG`
    - autotools: `--enable-server-debug` / `--disable-server-debug`
    
    Follow-up to a16485a42ea5dabe6c327179a1678ad04d1c6b2f #16705
    
    Closes #17629

    Changed files

    • CMakeLists.txt
    • configure.ac
    • docs/INSTALL-CMAKE.md
    • tests/server/CMakeLists.txt
    • tests/server/Makefile.am
    • tests/server/Makefile.inc
  4. Change #236732

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

    Comments

    build: drop unused variables in tests
    Follow-up to fffec3d7e90b032a03eee2192e68f8baf913b3b4 #17629
    Follow-up to ee066732963b7051a8d2fd56fa91a4ce0b444bd5 #17628

    Changed files

    • tests/libtest/Makefile.am
    • tests/server/CMakeLists.txt
  5. Change #236740

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 16 Jun 2025 02:48:17
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 253e1e94c66a01299308b23d5abf56a67dda61be

    Comments

    autotools: drop no longer necessary `--srcdir` unity options
    Follow-up to ee066732963b7051a8d2fd56fa91a4ce0b444bd5 #17628
    
    Closes #17632

    Changed files

    • lib/Makefile.am
    • src/Makefile.am