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

Builder curl-unthreaded-solaris10-sparc Build #13189

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 33 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 5 hrs, 34 mins, 34 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 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 13189 Build
codebase Build
got_revision f1e1c8b98a403a433accbd1976debe59e502df05 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f1e1c8b98a403a433accbd1976debe59e502df05 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. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartTue Jun 3 17:52:21 2025
EndWed Jun 4 10:09:20 2025
Elapsed16 hrs, 16 mins, 58 secs

All Changes:

:

  1. Change #231296

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 03 Jun 2025 09:51:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 741748e34124e33da5357c0026cceb5a927cb036

    Comments

    autotools: recognize more Linux targets when setting `-D_GNU_SOURCE`
    To set `-D_GNU_SOURCE`.
    
    Required to declare `accept4` on uclibc targets. `host_os` can have
    the value `uclinux-uclibcgnueabi` in this case.
    
    Fixing:
    ```
    cf-socket.c: In function 'cf_tcp_accept_connect':
    cf-socket.c:2141:18: error: implicit declaration of function 'accept4'; did you mean 'accept'? [-Werror=implicit-function-declaration]
     2141 |     s_accepted = accept4(ctx->sock, (struct sockaddr *) &add, &size,
    ```
    
    Follow-up to 3d02872be7cfe6dcdef4b02321b47af19e1ce268 #16979
    
    Reported-by: Kadambini Nema
    Fixes #17512
    Closes #17524

    Changed files

    • configure.ac
  2. Change #231313

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 03 Jun 2025 16:51:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c7658f274c551c14f7e22031e324a25f1bdea800

    Comments

    curl: make -N handled correctly
    Options marked ARG_NO should have their 'toggle' value reverted when the
    short option is used as it implies using the --no- prefix.
    
    -N happens be the only short option flag for a --no- long option.
    
    Reported-by: Stefan Eissing
    Closes #17527

    Changed files

    • src/tool_getparam.c
  3. Change #231314

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 03 Jun 2025 16:52:01
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f1e1c8b98a403a433accbd1976debe59e502df05

    Comments

    tls BIOs: handle BIO_CTRL_EOF correctly
    Needs to return 1 if EOF from underlying filter has been seen.
    
    Fixes #17471
    Reported-by: Michael Kaufmann
    Closes #17526

    Changed files

    • lib/vtls/openssl.c
    • lib/vtls/wolfssl.c