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

Builder curl-unthreaded-solaris11-i386 Build #5231

Build In Progress:

ETA: 17:47:02 [54 mins, 13 secs]

Runtest

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 19 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Jun 15 15:22:18 2026
Elapsed1 hrs, 30 mins, 31 secs

All Changes:

:

  1. Change #271094

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 13:36:46
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 03bc93bd327e06e86af0b0c14a888f7482affedc

    Comments

    servers: drop unix socket path attribute check on Windows
    On Windows there is no `lstat()`, which was later substituted with
    normal `stat()`, but on Windows `S_IFSOCK` is never defined, which meant
    the output of stat was not actually used, reducing this to checking for
    the presence of the file, and bailing out without retry if missing.
    
    Follow-up to 30e491e5c921aecca5a16083d8185840dc64eccd #7034
    Follow-up to 99fb36797a3f0b64ad20fcb8b83026875640f8e0
    
    Cherry-picked from #22010
    
    Closes #22021

    Changed files

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

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 15 Jun 2026 13:41:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8cc3fed7df0090ed970947fcc6127f639edf3b7d

    Comments

    transfer: adapt Curl_xfer_is_secure()
    Now that `conn->origin` can be the proxy, we need to change how
    Curl_xfer_is_secure() and some other places work.
    
    Pointed out by Codex Security
    
    Closes #22015

    Changed files

    • lib/cfilters.c
    • lib/connect.c
    • lib/http.c
    • lib/imap.c
    • lib/transfer.c
    • lib/transfer.h
    • lib/vquic/vquic.c
  3. 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
  4. 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
  5. 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
  6. 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