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

Builder curl-threaded-solaris10-sparc Build #2989

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision5ef4451f7b90b1c4275d9d4a5a008848aaf9c8ac
Got Revision5ef4451f7b90b1c4275d9d4a5a008848aaf9c8ac
Changes13 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave
buildername curl-threaded-solaris10-sparc Builder
buildnumber 2989 Build
codebase Build
got_revision 5ef4451f7b90b1c4275d9d4a5a008848aaf9c8ac Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 5ef4451f7b90b1c4275d9d4a5a008848aaf9c8ac Build
scheduler schedule-curl-threaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-threaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. David Zhuang
  3. Stefan Eissing
  4. Viktor Szakats
  5. renovate[bot]

Timing:

StartThu Sep 4 08:15:28 2025
EndThu Sep 4 12:35:21 2025
Elapsed4 hrs, 19 mins, 52 secs

All Changes:

:

  1. Change #244366

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 11:35:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 765b5ab0cdaa6156885591f1e56110a0d2e975f8

    Comments

    tool_getparam: warn on more unicode prefixes
    If a string argument is expected and the first two bytes are 0xe2 ex80
    and the third has the 7th bit set, that's enough for curl to warn.
    
    Previously we tried to detect and warn only for the unicode double
    quote, but users might use single quotes, other quotes or even lead the
    argument with one of the "zero widths" characters. This is an attempt to
    detect many of those. Without triggering for "normal" IDN hostnames.
    
    Closes #18459

    Changed files

    • src/tool_getparam.c
    • tests/data/test469
    • tests/data/test470
  2. Change #244367

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 03 Sep 2025 11:37:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8603d5262b09c5641c4b69a83a24fcf7f5aac232

    Comments

    GHA: update awslabs/aws-lc to v1.60.0
    Closes #18458

    Changed files

    • .github/workflows/http3-linux.yml
    • .github/workflows/linux.yml
  3. Change #244369

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 11:55:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 967a626af48aafd3747c39a5597bd8c4a7977a7a

    Comments

    idn: reject conversions that end up as a zero length hostname
    Reported-by: RepoRascal on hackerone
    Closes #18462

    Changed files

    • lib/idn.c
  4. Change #244374

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 03 Sep 2025 12:51:00
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9f1102cf740c30b3da8f5df299ae8c9c088fbce8

    Comments

    pytest: add tests for getting a non-existing ftp file
    Check that return code is 78.
    
    Closes #18463

    Changed files

    • tests/http/test_30_vsftpd.py
    • tests/http/test_31_vsftpds.py
    • tests/http/test_32_ftps_vsftpd.py
  5. Change #244378

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 03 Sep 2025 12:52:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5e6bc73570557db2ceb092d1bc7284aca9271f15

    Comments

    GHA: Update cloudflare/quiche to v0.24.6
    Closes #18464

    Changed files

    • .github/workflows/http3-linux.yml
  6. Change #244379

    Category curl
    Changed by David Zhuang <dzhuangohnoyoudont@roblox.com>
    Changed at Wed 03 Sep 2025 12:54:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c278c508e2acfad5f2603febfdba80a30427cd3f

    Comments

    http: do the cookie list access under lock
    A previous refactor of cookie logic changed Curl_cookie_getlist to no
    longer return a list of copied cookies, but instead return a linked list
    pointing to existing cookies. The returned linked list is accessed
    outside of the scope of the cookie share lock in http_cookies, which
    leads to issues if the shared cookie list is modified at the same time.
    This is the relevant commit: be39ed1
    
    Closes #18457

    Changed files

    • lib/http.c
  7. Change #244389

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 14:30:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 71c9706959cbd570b11074e9002a95a4e80956fc

    Comments

    tests: remove the 'none' server
    Only actually needed servers should be listed and none is then implied
    if no servers are listed.
    
    Outputs a warning if "none" is still set as a server.
    
    Closes #18466

    Changed files

    • docs/tests/FILEFORMAT.md
    • tests/data/test1013
    • tests/data/test1014
    • tests/data/test1016
    • tests/data/test1017
    • tests/data/test1018
    • tests/data/test1019
    • tests/data/test1020
    • tests/data/test1022
    • tests/data/test1023
    • tests/data/test1026
    • tests/data/test1027
    • tests/data/test1034
    • tests/data/test1035
    • tests/data/test1063
    • tests/data/test1084
    • tests/data/test1085
    • tests/data/test1119
    • tests/data/test1132
    • tests/data/test1135
    • tests/data/test1139
    • tests/data/test1140
    • tests/data/test1165
    • tests/data/test1167
    • tests/data/test1169
    • tests/data/test1173
    • tests/data/test1175
    • tests/data/test1177
    • tests/data/test1179
    • tests/data/test1182
    • tests/data/test1185
    • tests/data/test1222
    • tests/data/test1234
    • tests/data/test1236
    • tests/data/test1260
    • tests/data/test1263
    • tests/data/test1264
    • tests/data/test1268
    • tests/data/test1269
    • tests/data/test1275
    • tests/data/test1276
    • tests/data/test1279
    • tests/data/test1281
    • tests/data/test1291
    • tests/data/test1300
    • tests/data/test1301
    • tests/data/test1302
    • tests/data/test1303
    • tests/data/test1304
    • tests/data/test1305
    • tests/data/test1306
    • tests/data/test1307
    • tests/data/test1308
    • tests/data/test1309
    • tests/data/test1323
    • tests/data/test1330
    • tests/data/test1394
    • tests/data/test1395
    • tests/data/test1396
    • tests/data/test1397
    • tests/data/test1398
    • tests/data/test1399
    • tests/data/test1409
    • tests/data/test1410
    • tests/data/test1427
    • tests/data/test1447
    • tests/data/test1453
    • tests/data/test1461
    • tests/data/test1462
    • tests/data/test1463
    • tests/data/test1464
    • tests/data/test1469
    • tests/data/test1471
    • tests/data/test1472
    • tests/data/test1474
    • tests/data/test1477
    • tests/data/test1478
    • tests/data/test1486
    • tests/data/test1488
    • tests/data/test1508
    • tests/data/test1521
    • tests/data/test1530
    • tests/data/test1537
    • tests/data/test1538
    • tests/data/test1544
    • tests/data/test1550
    • tests/data/test1557
    • tests/data/test1558
    • tests/data/test1559
    • tests/data/test1560
    • tests/data/test1564
    • tests/data/test1592
    • tests/data/test1597
    • tests/data/test1600
    • tests/data/test1601
    • tests/data/test1602
    • tests/data/test1603
    • tests/data/test1604
    • tests/data/test1605
    • tests/data/test1606
    • tests/data/test1607
    • tests/data/test1608
    • tests/data/test1609
    • tests/data/test1610
    • tests/data/test1611
    • tests/data/test1612
    • tests/data/test1614
    • tests/data/test1615
    • tests/data/test1616
    • tests/data/test1620
    • tests/data/test1621
    • tests/data/test1650
    • tests/data/test1651
    • tests/data/test1652
    • tests/data/test1653
    • tests/data/test1654
    • tests/data/test1655
    • tests/data/test1656
    • tests/data/test1657
    • tests/data/test1658
    • tests/data/test1660
    • tests/data/test1661
    • tests/data/test1663
    • tests/data/test1664
    • tests/data/test1705
    • tests/data/test1706
    • tests/data/test1707
    • tests/data/test1708
    • tests/data/test1709
    • tests/data/test1710
    • tests/data/test19
    • tests/data/test1900
    • tests/data/test1911
    • tests/data/test1912
    • tests/data/test1915
    • tests/data/test1918
    • tests/data/test1979
    • tests/data/test1980
    • tests/data/test20
    • tests/data/test2043
    • tests/data/test2044
    • tests/data/test2045
    • tests/data/test2075
    • tests/data/test2080
    • tests/data/test219
    • tests/data/test2600
    • tests/data/test2601
    • tests/data/test2602
    • tests/data/test2603
    • tests/data/test2604
    • tests/data/test288
    • tests/data/test3026
    • tests/data/test3105
    • tests/data/test3200
    • tests/data/test3205
    • tests/data/test3211
    • tests/data/test3212
    • tests/data/test3213
    • tests/data/test3214
    • tests/data/test333
    • tests/data/test370
    • tests/data/test375
    • tests/data/test378
    • tests/data/test411
    • tests/data/test422
    • tests/data/test460
    • tests/data/test462
    • tests/data/test467
    • tests/data/test484
    • tests/data/test485
    • tests/data/test496
    • tests/data/test501
    • tests/data/test504
    • tests/data/test509
    • tests/data/test517
    • tests/data/test543
    • tests/data/test557
    • tests/data/test558
    • tests/data/test632
    • tests/data/test680
    • tests/data/test686
    • tests/data/test697
    • tests/data/test745
    • tests/data/test746
    • tests/data/test748
    • tests/data/test75
    • tests/data/test751
    • tests/data/test759
    • tests/data/test760
    • tests/data/test761
    • tests/data/test795
    • tests/data/test96
    • tests/data/test971
    • tests/runner.pm
    • tests/servers.pm
  8. Change #244397

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 03 Sep 2025 15:49:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision de86c2483f715faeb73527fd8a1a096f52927778

    Comments

    test763: verify IDN hostname with zero width characters only
    Bonus: fix memory leak in exit path from 967a626af48aafd37
    
    Closes #18465

    Changed files

    • lib/idn.c
    • tests/data/Makefile.am
    • tests/data/test763
  9. Change #244400

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Wed 03 Sep 2025 15:51:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2ebb966e0878fe5907af5708b6a4de830b17ccee

    Comments

    GHA: update nghttp2/nghttp2 to v1.67.0
    Closes #18456

    Changed files

    • .github/workflows/http3-linux.yml
  10. Change #244401

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Wed 03 Sep 2025 15:53:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 24badd29f59600687d2c85de029035b207d25974

    Comments

    multi: limit-rate revisited
    Tweaks around handling of --limit-rate:
    
    * tracing: trace outstanding timeouts by name
    * multi: do not mark transfer as dirty that have
      an EXPIRE_TOOFAST set
    * multi: have one static function to asses speed limits
    * multi: when setting EXPIRE_TOOFAST remove the transfers
      from the dirty set
    * progress: rename vars and comment on how speed limit
      timeouts are calculated, for clarity
    * transfer: when speed limiting, exit the receive loop
      after a quarter of the limit has been received, not
      on the first chunk received.
    * cf-ip-happy.c: clear EXPIRE_HAPPY_EYEBALLS on connect
    * scorecard: add --limit-rate parameter to test with
      speed limits in effect
    
    Closes #18454

    Changed files

    • lib/cf-ip-happy.c
    • lib/curl_trc.c
    • lib/curl_trc.h
    • lib/multi.c
    • lib/multiif.h
    • lib/progress.c
    • lib/transfer.c
    • lib/transfer.h
    • scripts/singleuse.pl
    • tests/http/scorecard.py
    • tests/http/testenv/curl.py
  11. Change #244404

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 03 Sep 2025 16:31:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 49145249be7b4b677606308fc34f180330a3640a

    Comments

    tidy-up: drop stray "unused" comments
    Closes #18453

    Changed files

    • CMake/CurlTests.c
    • docs/examples/cacertinmem.c
    • docs/examples/chkspeed.c
    • docs/examples/debug.c
    • docs/examples/http2-download.c
    • docs/examples/http2-pushinmemory.c
    • docs/examples/http2-serverpush.c
    • docs/examples/http2-upload.c
    • docs/examples/multi-debugcallback.c
    • docs/examples/threaded-ssl.c
    • docs/examples/usercertinmem.c
    • docs/libcurl/opts/CURLOPT_DEBUGFUNCTION.md
    • lib/cf-socket.c
    • lib/curl_rtmp.c
    • lib/file.c
    • lib/hostip.c
    • lib/http.c
    • lib/imap.c
    • lib/krb5.c
    • lib/mime.c
    • lib/multi.c
    • lib/pop3.c
    • lib/smtp.c
    • lib/telnet.c
    • lib/tftp.c
    • lib/version.c
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/openssl.c
    • lib/vtls/schannel.c
    • src/tool_cb_dbg.c
    • src/tool_cb_rea.c
    • tests/libtest/cli_h2_serverpush.c
    • tests/libtest/lib1512.c
    • tests/libtest/lib1533.c
    • tests/libtest/lib1537.c
    • tests/libtest/lib1550.c
    • tests/libtest/lib1560.c
    • tests/libtest/lib1971.c
    • tests/libtest/lib1975.c
    • tests/libtest/lib501.c
    • tests/libtest/lib517.c
    • tests/libtest/lib530.c
    • tests/libtest/lib547.c
    • tests/libtest/lib555.c
    • tests/libtest/lib557.c
    • tests/libtest/lib558.c
    • tests/libtest/lib578.c
    • tests/libtest/lib579.c
    • tests/libtest/lib582.c
    • tests/libtest/lib668.c
    • tests/libtest/lib758.c
    • tests/libtest/mk-lib1521.pl
    • tests/libtest/testtrace.c
    • tests/unit/unit1603.c
  12. Change #244405

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 03 Sep 2025 16:33:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 0b0f3d937c4ec9a877b5b75014e4886e55907d8f

    Comments

    lib: drop `UNUSED_PARAM` macro
    Added in 2011, but has seen little use in the code. The necessary
    compiler feature is missing in some compilers (e.g. MSVC), thus in most
    places the portable `(void)` cast is used in addition.
    
    Also:
    - vtls/rustls: silence unused argument warning with `(void)`.
      Necessary for MSVC, for example.
    
    Ref: ee4ed461288ec74641e3b96d5508628c07f689b0
    
    Closes #18455

    Changed files

    • lib/curl_setup.h
    • lib/krb5.c
    • lib/vtls/gtls.c
    • lib/vtls/mbedtls.c
    • lib/vtls/rustls.c
    • lib/vtls/schannel.c
  13. Change #244412

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 03 Sep 2025 18:35:31
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5ef4451f7b90b1c4275d9d4a5a008848aaf9c8ac

    Comments

    cmake: fix setting LTO properties on the wrong targets
    Follow-up to ae1a861bd62339b34cfd433e5941904e7d6878a1 #17043
    
    Closes #18469

    Changed files

    • lib/CMakeLists.txt