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

Builder curl-threaded-solaris10-i386 Build #4474

Results:

Failed runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 5 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 57 mins, 38 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 4474 Build
codebase Build
got_revision 0ffab25b6c9f59223079e3d85edfb5553d397651 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 0ffab25b6c9f59223079e3d85edfb5553d397651 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Jun 15 01:54:59 2026
EndMon Jun 15 11:48:41 2026
Elapsed9 hrs, 53 mins, 42 secs

All Changes:

:

  1. Change #270930

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

    Comments

    rtspd: sync up sleep loop with sws
    Check for `!got_exit_signal` as part of the `while()` expression,
    instead of doing it after calling `curlx_wait_ms()`. To simplify and
    improve consistency with rest of code.
    
    Follow-up to 0653fa107f6fb03555d49da86a1fbfc659873f5b
    Follow-up to 123c92c904b2f258ae69e211aa2663e80cb5429a
    
    Closes #22006

    Changed files

    • tests/server/rtspd.c
  2. Change #270931

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

    Comments

    servers: minor socket error handling fixes
    - sws: fix socket error code in `select()` failure message.
      Spotted by Copilot
      Bug: https://github.com/curl/curl/pull/21998#discussion_r3409469444
    - sws: do not call `SOCKERRNO` twice on error.
    - dnsd: do not call `SOCKERRNO` twice on error.
    - dnsd: replace `goto` with `while()` to sync with rest of code.
    - dnsd: `sendto()` fail message fixes:
      - replace `int` cast with `%zu` mask.
      - drop redundant newline.
      - show socket error string like rest of code.
      - report not-fully-sent error separately from socket errors.
    
    Closes #22007

    Changed files

    • tests/server/dnsd.c
    • tests/server/sws.c
  3. Change #270944

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

    Comments

    servers: drop single-use interim result variables
    Closes #22008

    Changed files

    • tests/server/mqttd.c
    • tests/server/rtspd.c
    • tests/server/socksd.c
    • tests/server/sws.c
    • tests/server/util.c
  4. Change #270948

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 14 Jun 2026 18:12:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c4cb67692d4466ba577fcdd9d3eb60cdfe19ba13

    Comments

    smb: integer overflow proof a size check
    By using size_t for the vars instead of shorts.
    
    Pointed out by Zeropath
    
    Closes #22001

    Changed files

    • lib/smb.c
  5. Change #270950

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sun 14 Jun 2026 18:36:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5bff1c35f11e2e633459051c23e0ce339bc05b99

    Comments

    socks_sspi: store socks5_gssapi_enctype
    Store the unwrapped protection level in `conn->socks5_gssapi_enctype` to
    prevent the proxy from contuning unprotected. Matches the GSSAPI version
    of the code.
    
    Reported-by: Trail of Bits
    Closes #22004

    Changed files

    • lib/socks_sspi.c
  6. Change #270957

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 14 Jun 2026 20:10:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0ffab25b6c9f59223079e3d85edfb5553d397651

    Comments

    tidy-up: miscellaneous
    - `N byte` -> `N-byte` or `N bytes`.
    - INTERNALS.md: language tweaks.
    - schannel: language tweak in comment/error message.
    - socks_gssapi, socks_sspi: simplify composing an error message.
      (at a cost of 8 extra constant string bytes.)
    - m4/curl-compilers.m4: fix typo in link (in comment).
    - contrithanks.sh: fix indent, drop stray `;` terminator.
    - lib, src, tests: drop/fix a bunch of badwords.
    - fix typos in comments.
    - fix indent, stray spaces.
    
    Some of these spotted by GitHub Code Quality and Copilot
    
    Closes #22009

    Changed files

    • docs/INTERNALS.md
    • docs/examples/httpput-postfields.c
    • docs/libcurl/opts/CURLOPT_INTERLEAVEFUNCTION.md
    • lib/altsvc.c
    • lib/cf-https-connect.c
    • lib/connect.c
    • lib/curl_config-cmake.h.in
    • lib/curl_endian.c
    • lib/curl_ntlm_core.c
    • lib/curl_setup.h
    • lib/ftp.c
    • lib/hsts.c
    • lib/ldap.c
    • lib/mime.c
    • lib/peer.c
    • lib/pop3.c
    • lib/proxy.c
    • lib/proxy.h
    • lib/smb.c
    • lib/socks.c
    • lib/socks_gssapi.c
    • lib/socks_sspi.c
    • lib/telnet.c
    • lib/urlapi.c
    • lib/vquic/cf-ngtcp2-proxy.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/schannel.c
    • lib/vtls/vtls.h
    • m4/curl-compilers.m4
    • projects/OS400/curlmain.c
    • scripts/badwords.txt
    • scripts/contrithanks.sh
    • scripts/top-complexity
    • scripts/top-length
    • tests/data/test1063
    • tests/data/test1130
    • tests/data/test1131
    • tests/data/test1238
    • tests/data/test1349
    • tests/data/test1350
    • tests/data/test1351
    • tests/data/test1352
    • tests/data/test1353
    • tests/data/test1412
    • tests/data/test1513
    • tests/data/test1515
    • tests/data/test153
    • tests/data/test1555
    • tests/data/test1628
    • tests/data/test1631
    • tests/data/test1632
    • tests/data/test2045
    • tests/data/test2206
    • tests/data/test2207
    • tests/data/test2302
    • tests/data/test2713
    • tests/data/test2714
    • tests/data/test2715
    • tests/data/test284
    • tests/data/test286
    • tests/data/test388
    • tests/data/test399
    • tests/data/test741
    • tests/data/test743
    • tests/data/test744
    • tests/data/test830
    • tests/data/test831
    • tests/data/test832
    • tests/data/test844
    • tests/data/test845
    • tests/data/test849
    • tests/data/test856
    • tests/data/test876
    • tests/data/test877
    • tests/data/test878
    • tests/data/test889
    • tests/data/test890
    • tests/data/test893
    • tests/data/test932
    • tests/data/test933
    • tests/data/test934
    • tests/data/test948
    • tests/data/test949
    • tests/data/test954
    • tests/ech_tests.sh
    • tests/libtest/cli_hx_download.c
    • tests/libtest/first.h
    • tests/libtest/lib1507.c
    • tests/libtest/lib1514.c
    • tests/libtest/lib1517.c
    • tests/libtest/lib1518.c
    • tests/libtest/lib1525.c
    • tests/libtest/lib1526.c
    • tests/libtest/lib1527.c
    • tests/libtest/lib1554.c
    • tests/libtest/lib1557.c
    • tests/libtest/lib1560.c
    • tests/libtest/lib1588.c
    • tests/libtest/lib1591.c
    • tests/libtest/lib1592.c
    • tests/libtest/lib1598.c
    • tests/libtest/lib1648.c
    • tests/libtest/lib1939.c
    • tests/libtest/lib2023.c
    • tests/libtest/lib2032.c
    • tests/libtest/lib2405.c
    • tests/libtest/lib3034.c
    • tests/libtest/lib3102.c
    • tests/libtest/lib3207.c
    • tests/libtest/lib500.c
    • tests/libtest/lib508.c
    • tests/libtest/lib510.c
    • tests/libtest/lib513.c
    • tests/libtest/lib514.c
    • tests/libtest/lib517.c
    • tests/libtest/lib518.c
    • tests/libtest/lib525.c
    • tests/libtest/lib526.c
    • tests/libtest/lib537.c
    • tests/libtest/lib539.c
    • tests/libtest/lib554.c
    • tests/libtest/lib571.c
    • tests/libtest/lib578.c
    • tests/libtest/lib579.c
    • tests/libtest/lib599.c
    • tests/libtest/lib643.c
    • tests/libtest/lib650.c
    • tests/libtest/lib651.c
    • tests/libtest/lib652.c
    • tests/libtest/lib654.c
    • tests/libtest/lib666.c
    • tests/libtest/lib667.c
    • tests/libtest/lib668.c
    • tests/libtest/lib753.c
    • tests/libtest/lib758.c
    • tests/libtest/testutil.c
    • tests/libtest/testutil.h
    • tests/processhelp.pm
    • tests/runner.pm
    • tests/runtests.pl
    • tests/server/getpart.c
    • tests/server/rtspd.c
    • tests/server/sockfilt.c
    • tests/server/sws.c
    • tests/server/tftpd.c
    • tests/server/util.c
    • tests/test1222.pl
    • tests/testutil.pm
    • tests/unit/unit1300.c
    • tests/unit/unit1305.c
    • tests/unit/unit1603.c
    • tests/unit/unit1609.c
    • tests/unit/unit1652.c
    • tests/unit/unit1661.c
    • tests/unit/unit1674.c
    • tests/unit/unit3205.c
    • tests/unit/unit3300.c