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

Builder curl-ares-solaris10-i386 Build #4213

Results:

Failed runtest

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d
Got Revision3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d
Changes4 changes

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 10 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' failed ( 4 hrs, 50 mins, 44 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 17 secs )
    1. stdio

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Feb 23 12:56:23 2026
EndTue Feb 24 04:07:38 2026
Elapsed15 hrs, 11 mins, 14 secs

All Changes:

:

  1. Change #258572

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sun 22 Feb 2026 22:32:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 29758a6143d6ffec41d7c6a01c359c1b9301f9ab

    Comments

    tests/server: silence clang-tidy warning
    It looks like a case that can never happen in practice.
    
    Seen on mingw-w64 with experimental concatenated (vs. #included) test
    sources:
    ```
    tests/server/util.c:662:16: error: Null pointer passed as 1st
     argument to string length function [clang-analyzer-unix.cstring.NullArg]
      662 |   size_t len = strlen(unix_socket);
          |                ^
    ```
    Ref: https://github.com/curl/curl/actions/runs/22267482855/job/64416261156#step:10:273
    
    Closes #20668

    Changed files

    • tests/server/util.c
  2. Change #258581

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 23 Feb 2026 00:01:18
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 57a1cc558795a4a96c27de7042a3e1634cead3f6

    Comments

    URL-SYNTAX.md: fix port number mistakes for IMAP and LDAP
    Reported-by: Augment code
    URL: https://github.com/curl/curl/pull/20673#pullrequestreview-3838139961
    Closes #20679

    Changed files

    • docs/URL-SYNTAX.md
  3. Change #258584

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 23 Feb 2026 01:00:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e8415ad3c7ab69a7056daa4b39e7a0044c43f5ba

    Comments

    clang-tidy: add arg names to prototypes where missing
    Detected by `readability-named-parameter` with `HeaderFilterRegex: '.*'`,
    or `CURL_CLANG_TIDYFLAGS='--header-filter=.*'`.
    
    Follow-up to c878160e9c1f7366e64299aa02540d5495c3df9c #20624
    
    Closes #20657

    Changed files

    • include/curl/curl.h
    • include/curl/multi.h
    • include/curl/urlapi.h
    • lib/curl_addrinfo.h
    • lib/curl_share.h
    • lib/formdata.h
    • lib/hash.h
    • lib/http.h
    • lib/llist.h
    • lib/multiif.h
    • src/slist_wc.h
  4. Change #258623

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 23 Feb 2026 10:23:57
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 3877db7bcf8a180f8dcb1c36baf5f77dc29cbf1d

    Comments

    openssl: fix compiler warning with OpenSSL master
    vtls/openssl.c:469:15: error: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
    
    X509_get_X509_PUBKEY() now returns a const pointer - but only on OpenSSL
    3, we must keep the non-const version for all forks.
    
    Closes #20681

    Changed files

    • lib/vtls/openssl.c