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

Builder curl-threaded-solaris11-i386 Build #5240

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 16 mins, 36 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jun 15 14:32:02 2026
EndMon Jun 15 16:47:06 2026
Elapsed2 hrs, 15 mins, 3 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