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

Builder curl-ares-solaris11-i386 Build #5237

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 8 mins, 4 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-ares-solaris11-i386 slave
buildername curl-ares-solaris11-i386 Builder
buildnumber 5237 Build
codebase Build
got_revision d9ea8cdcfabd421160a8ce3950e46f15d44fe469 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision d9ea8cdcfabd421160a8ce3950e46f15d44fe469 Build
scheduler schedule-curl-ares-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSun Jun 14 15:02:17 2026
EndSun Jun 14 17:22:44 2026
Elapsed2 hrs, 20 mins, 27 secs

All Changes:

:

  1. Change #270906

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 14:17:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision fe2df80a5ae8a9afba0eb0601f7aea34ee76fde2

    Comments

    socket: use name `sockerr` for socket error variables
    Also:
    - add comment explaining a `sockerr = errno` (vs. `SOCKERRNO`)
      assigment.
    
    Closes #21998

    Changed files

    • lib/asyn-thrdd.c
    • lib/cf-socket.c
    • lib/ftp.c
    • lib/socketpair.c
    • lib/telnet.c
    • lib/tftp.c
    • tests/libtest/first.h
    • tests/server/dnsd.c
    • tests/server/mqttd.c
    • tests/server/rtspd.c
    • tests/server/sockfilt.c
    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/server/util.c
  2. Change #270907

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 14:17:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ba16b832213661a17887e15f9d7dc0899ebdd834

    Comments

    telnet: drop an `int` cast no longer necessary
    Spotted-by GitHub Code Quality
    
    Follow-up to c5637baa06046d317c383d420f6cbc9ddb3b0870
    Follow-up to 83a5e390654fb1e77c7c5d7bd32ba147ff022cbd
    
    Closes #22002

    Changed files

    • lib/telnet.c
  3. Change #270908

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 14:17:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c61f007a73e27f9f32d6b3f5d88d4aba9d7854d6

    Comments

    krb5_sspi: fix error message on `DecryptMessage()` fail
    Spotted by GitHub Code Quality
    
    Closes #22003

    Changed files

    • lib/vauth/krb5_sspi.c
  4. Change #270909

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 14:25:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9972f700a852c9a886670b5e4f1f85cad95c19ba

    Comments

    perl: switch from backticks to `qx()`
    To make it easier to find external command invocation in the source.
    
    Also drop backticks from a comment.
    
    To find external command invocations in Perl code use:
    ```sh
    git grep -E "((exec|qx|open2|open3|system)\(|open\(.+-\|)" $(<perlfiles>)
    ```
    
    Refs:
    https://perldoc.perl.org/functions/qx
    https://perldoc.perl.org/perlop#Simpler-Quote-Like-Operators
    
    Closes #21994

    Changed files

    • .github/scripts/randcurl.pl
    • scripts/checksrc.pl
    • scripts/mdlinkcheck
    • scripts/mk-ca-bundle.pl
    • scripts/randdisable
    • scripts/release-notes.pl
    • tests/appveyor.pm
    • tests/azure.pm
    • tests/devtest.pl
    • tests/processhelp.pm
    • tests/runner.pm
    • tests/runtests.pl
    • tests/servers.pm
    • tests/sshhelp.pm
    • tests/sshserver.pl
    • tests/testcurl.pl
    • tests/testutil.pm
  5. Change #270910

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 14:25:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d9ea8cdcfabd421160a8ce3950e46f15d44fe469

    Comments

    tests/servers: do not interpret `unlink()` retval as `errno`
    In `socksd` and `sws` error messages.
    
    Also:
    - show the messages only if `unlink()` failed.
    - rename a return code variable and sync a message text for consistency.
    
    Ref: https://pubs.opengroup.org/onlinepubs/9699919799/functions/unlink.html
    
    Spotted by Copilot in `socksd.c`
    Bug: https://github.com/curl/curl/pull/21998#discussion_r3409395013
    Follow-up to 80eb71a3f5146f2ab5c5f8d8655d6861b5472668 #8687
    
    Closes #22005

    Changed files

    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/util.c