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

Builder curl-ares-solaris10-sparc Build #2970

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision023e453032a3b0d12c81b030f7935ac92e554011
Got Revision023e453032a3b0d12c81b030f7935ac92e554011
Changes8 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

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

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Joshua Rogers
  3. Viktor Szakats

Timing:

StartSat Oct 18 23:17:34 2025
EndSun Oct 19 11:51:14 2025
Elapsed12 hrs, 33 mins, 40 secs

All Changes:

:

  1. Change #246018

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 18 Oct 2025 12:49:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f847d2ed0244319ee6b5e9b054c39077e62388ad

    Comments

    tool_formparse: rewrite the headers file parser
    The -F option allows users to provide a file with a set of headers for a
    specific formpost section. This code used old handcrafted parsing logic
    that potentially could do wrong.
    
    Rewrite to use my_get_line() and dynbuf. Supports longer lines and
    should be more solid parsing code.
    
    Gets somewhat complicated by the (unwise) feature that allows "folding"
    of header lines in the file: if a line starts with a space it should be
    appended to the previous.
    
    The previous code trimmed spurious CR characters wherever they would
    occur in a line but this version does not. It does not seem like
    something we want or that users would expect.
    
    Test 646 uses this feature.
    Closes #19113

    Changed files

    • src/tool_formparse.c
    • tests/data/test646
  2. Change #246019

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Sat 18 Oct 2025 12:54:19
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8de898414c422ed56980dd4ac3a0125bc6fec5c5

    Comments

    openssl: free UI_METHOD on exit path
    In providercheck(), when failing to open the "store", the exit path
    would not previously free the created UI_METHOD and instead leak this
    resource.
    
    Pointed out by ZeroPath
    
    Closes #19114

    Changed files

    • lib/vtls/openssl.c
  3. Change #246026

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 18 Oct 2025 13:53:30
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f30f1307c1d9d70a96557359f039ba7ef9b077fb

    Comments

    cmake: fix Linux pre-fills for non-glibc (when `_CURL_PREFILL=ON`)
    - do not pre-fill `HAVE_LINUX_TCP_H` on Linux.
      `linux/tcp.h` is a Linux kernel userspace header. It's likely
      installed when using glibc and likely missing by default when using
      something else, e.g. MUSL (e.g. on Alpine).
    
      Therefore always detect it for Linux targets, and only pre-fill it for
      non-Linux ones.
    
    - do not pre-fill `HAVE_GLIBC_STRERROR_R` on Linux.
      To fix it for non-glibc envs, e.g. MUSL (e.g. on Alpine).
    
    Note, the pre-fill option is a disabled by default, internal option and
    strongly not recommended outside of curl development.
    
    Closes #19116

    Changed files

    • CMake/unix-cache.cmake
  4. Change #246029

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 18 Oct 2025 14:30:43
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a000444cb0917b490a7a1635e51be3ac5bf61b3e

    Comments

    cmake: fix Linux pre-fill `HAVE_POSIX_STRERROR_R` (when `_CURL_PREFILL=ON`)
    It depends on C library.
    
    Follow-up to f30f1307c1d9d70a96557359f039ba7ef9b077fb #19116

    Changed files

    • CMake/unix-cache.cmake
  5. Change #246047

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Sat 18 Oct 2025 22:15:26
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision bff9679a016d18d6b87e773d8a45ac4a2f3be7aa

    Comments

    schannel_verify: do not call infof with an appended \n
    Discovered by ZeroPath
    Closes #19123

    Changed files

    • lib/vtls/schannel_verify.c
  6. Change #246049

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Sat 18 Oct 2025 22:16:33
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9021e42c0274853d8166d7ec616212f148a8dc07

    Comments

    ldap: do not pass a \n to failf()
    Discovered by ZeroPath
    Closes #19122

    Changed files

    • lib/ldap.c
  7. Change #246050

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Sat 18 Oct 2025 22:19:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c567b37548066b664ac06ad155a819b53b27ad1c

    Comments

    src/var: remove dead code
    Discovered by ZeroPath
    Closes #19119

    Changed files

    • src/var.c
  8. Change #246054

    Category curl
    Changed by Joshua Rogers <MegaManSecohnoyoudont@users.noreply.github.com>
    Changed at Sat 18 Oct 2025 22:30:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 023e453032a3b0d12c81b030f7935ac92e554011

    Comments

    openldap: do not pass newline to infof()
    Discovered by ZeroPath
    Closes #19120

    Changed files

    • lib/openldap.c