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

Builder curl-threaded-solaris10-i386 Build #4179

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision060e479a190899c5b165604e60366056cb865587
Got Revision060e479a190899c5b165604e60366056cb865587
Changes11 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 12 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 53 mins, 56 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 4179 Build
codebase Build
got_revision 060e479a190899c5b165604e60366056cb865587 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 060e479a190899c5b165604e60366056cb865587 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:

StartTue Jan 13 14:57:50 2026
EndWed Jan 14 05:53:28 2026
Elapsed14 hrs, 55 mins, 38 secs

All Changes:

:

  1. Change #255057

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 13 Jan 2026 01:31:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 07926b59828936117a7c6662f850bc09edb14357

    Comments

    lib: reorder protocol functions to avoid forward declarations (misc)
    For protocols: dict, file, gopher, tftp, http, mqtt, smb.
    
    Move protocol hander table to the end of sources, rearrange static
    functions is reverse dependency order as necessary.
    
    Closes #20274

    Changed files

    • lib/dict.c
    • lib/file.c
    • lib/gopher.c
    • lib/http.c
    • lib/mqtt.c
    • lib/smb.c
    • lib/tftp.c
  2. Change #255058

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 13 Jan 2026 01:31:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2ded1e3c6e9c1ad78c1ca04a44b09d73c488070d

    Comments

    lib: reorder protocol functions to avoid forward declarations (email)
    For protocols: imap, pop3, smtp.
    
    Move protocol hander table to the end of sources, rearrange static
    functions is reverse dependency order as necessary.
    
    Closes #20275

    Changed files

    • lib/imap.c
    • lib/pop3.c
    • lib/smtp.c
  3. Change #255059

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 13 Jan 2026 01:31:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9570d53b756dc4bc5ba36e1e81b0d7c62f8ccbbc

    Comments

    lib: reorder protocol functions to avoid forward declarations (ftp)
    There remains 4 forward declarations.
    
    Move protocol hander table to the end of sources, rearrange static
    functions is reverse dependency order as possible.
    
    Closes #20276

    Changed files

    • lib/ftp.c
  4. Change #255074

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 07:32:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4b566d8310d2216990ce7f3af813313b9776176a

    Comments

    top-complexity: always show the top-25
    Accept argument as a custom amount. Previously it showed all functions
    with a complexity score above 57. This way it adapts better as we
    gradually decrease complexity in functions.
    
    Closes #20273

    Changed files

    • scripts/top-complexity
  5. Change #255090

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 09:46:49
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision dac98ccfa27a392edd946227483bfac8f466219a

    Comments

    mqtt: better too-big-message-check
    Reported-by: gudyuu on hackerone
    Reviewed-by: Daniel Gustafsson
    Bug: https://hackerone.com/reports/3508500
    Closes #20281

    Changed files

    • lib/mqtt.c
  6. Change #255091

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 09:52:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f057ed05beb2f03eb77dab446d8ff9c3f62cac42

    Comments

    checksrc: warn for leading spaces before the preprocessor hash
    Fix the 40+ fallouts
    
    Closes #20282

    Changed files

    • lib/curl_ntlm_core.c
    • lib/file.c
    • lib/http_negotiate.c
    • lib/md4.c
    • lib/md5.c
    • lib/sha256.c
    • lib/vquic/curl_ngtcp2.c
    • lib/vssh/libssh.c
    • scripts/checksrc.pl
    • tests/data/test1185
  7. Change #255092

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 09:55:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8582ecf5bb3b507fe0a9714cf3ea14733ccde02a

    Comments

    setopt: split up setopt_long and setopt_cptr
    - Split setopt_long() into multiple functions
      (setopt_long_bool/net/http/proxy/ssl/proto/misc) and dispatch them
      using a small function table
    
    - Extract proxy string option handling into setopt_cptr_proxy() and call
      it early from setopt_cptr()
    
    - Reorder options to simplify #ifdef blocks and reduce per-function size
    
    - Updates code paths to return CURLE_UNKNOWN_OPTION from helper defaults
      so dispatching can continue cleanly
    
    Closes #20280

    Changed files

    • lib/setopt.c
  8. Change #255098

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 11:16:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision db86f2de9bd36e981e4962babf0ec979cf72d91f

    Comments

    tftp: correct the filename length check
    Reported-by: z2_
    Bug: https://hackerone.com/reports/3508321
    Closes #20283

    Changed files

    • lib/tftp.c
  9. Change #255116

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 13 Jan 2026 14:11:15
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 236c7d3c4d115795f87eb58aff3958bfb81e951e

    Comments

    curl_easy_nextheader.md: a new transfer invalidates 'prev'
    Closes #20285

    Changed files

    • docs/libcurl/curl_easy_nextheader.md
  10. Change #255119

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 13 Jan 2026 14:27:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 80739fa89de144fdef1b9c9e87ce11ea287dcafa

    Comments

    tests/server: use `CURL_PRINTF()`, drop `-Wformat-nonliteral` workaround
    Closes #20286

    Changed files

    • tests/server/first.h
    • tests/server/util.c
  11. Change #255120

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 13 Jan 2026 14:27:27
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 060e479a190899c5b165604e60366056cb865587

    Comments

    imap: check `imap_sendf()` printf masks at compile-time
    Closes #20287

    Changed files

    • lib/imap.c