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

Builder curl-ares-solaris11-sparc Build #6047

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionc8d8f081fd62c68c588f8963a8e441c730a23b5b
Got Revisionc8d8f081fd62c68c588f8963a8e441c730a23b5b
Changes4 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 3 mins, 22 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 22 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 6047 Build
codebase Build
got_revision c8d8f081fd62c68c588f8963a8e441c730a23b5b Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision c8d8f081fd62c68c588f8963a8e441c730a23b5b Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Jun 15 15:18:14 2026
EndMon Jun 15 16:09:41 2026
Elapsed51 mins, 27 secs

All Changes:

:

  1. Change #271122

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 14:27:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0882e3951d910b923f3463fa98604df9fcb13a0c

    Comments

    servers: mask to `S_IFMT` in unix socket path attribute check
    Instead of `S_IFSOCK` before this patch. For correctness; it is probably
    not an issue in most environments.
    
    Spotted by Copilot
    Bug: https://github.com/curl/curl/pull/22021#discussion_r3413049506
    Follow-up to 99fb36797a3f0b64ad20fcb8b83026875640f8e0
    
    Closes #22026

    Changed files

    • tests/server/util.c
  2. Change #271130

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 15 Jun 2026 14:32:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b0d733e143e53d2e99cd2d2b935741ce21561e1a

    Comments

    VULN-DISCLOSURE-POLICY: non-released code
    Closes #22025

    Changed files

    • docs/VULN-DISCLOSURE-POLICY.md
  3. Change #271136

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 15 Jun 2026 14:42:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9f25dcea55713aa37451c52b809e16ae1509bfe4

    Comments

    checksrc: detect and warn for (void)!
    It's plain weird. Don't do it.
    
    Closes #22023

    Changed files

    • scripts/checksrc.pl
  4. Change #271137

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 15 Jun 2026 14:43:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c8d8f081fd62c68c588f8963a8e441c730a23b5b

    Comments

    src/test: avoid (void)! constructs
    The reason to use them seems to be that just (void) before a function
    call is not enough to silence compiler warnings when return codes are
    ignored and -Werror=unused-result is used.
    
    While (void)! apparently works to silence those warnings, it is just too
    weird and surprising to readers to use.
    
    It is rather a reason to reconsider the usefulness of the warning.
    
    Closes #22023

    Changed files

    • src/tool_setopt.c
    • tests/server/util.c