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

Builder curl-ares-solaris11-sparc Build #5357

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionaf78b199b2fb291470c4cd3c478e19cc5d4cd753
Got Revisionaf78b199b2fb291470c4cd3c478e19cc5d4cd753
Changes3 changes

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

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

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 5357 Build
codebase Build
got_revision af78b199b2fb291470c4cd3c478e19cc5d4cd753 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision af78b199b2fb291470c4cd3c478e19cc5d4cd753 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartWed Feb 25 14:57:52 2026
EndWed Feb 25 16:06:22 2026
Elapsed1 hrs, 8 mins, 30 secs

All Changes:

:

  1. Change #258907

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 25 Feb 2026 14:19:40
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 86772a76c71cfac8646c256bc3831a6fdbf2e02c

    Comments

    RELEASE-NOTES: synced

    Changed files

    • RELEASE-NOTES
  2. Change #258914

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 25 Feb 2026 14:44:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ac46392f441410e6ac9770b53106e9289dbff711

    Comments

    clang-tidy: enable `bugprone-signed-char-misuse`, fix fallouts
    Examples:
    ```
    lib/vtls/openssl.c:2585:18: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
     2585 |       msg_type = *(const char *)buf;
    lib/vtls/openssl.c:2593:18: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
     2593 |       msg_type = *(const char *)buf;
    tests/server/mqttd.c:514:10: warning: comparison between 'signed char' and 'unsigned char' [bugprone-signed-char-misuse]
      514 |       if(passwd_flag == (char)(conn_flags & passwd_flag)) {
    tests/server/tftpd.c:362:13: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
      362 |         c = test->rptr[0];
    tests/server/tftpd.c:454:9: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
      454 |     c = *p++;                     /* pick up a character */
    src/tool_urlglob.c:272:46: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
      272 |     pat->c.ascii.letter = pat->c.ascii.min = min_c;
    src/tool_urlglob.c:273:24: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
      273 |     pat->c.ascii.max = max_c;
    tests/libtest/cli_h2_pausing.c:164:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      164 |   memset(&resolve, 0, sizeof(resolve));
    tests/libtest/cli_upload_pausing.c:158:23: warning: suspicious usage of 'sizeof()' on an expression of pointer type [bugprone-sizeof-expression]
      158 |   memset(&resolve, 0, sizeof(resolve));
    tests/libtest/first.c:86:15: warning: 'signed char' to 'int' conversion; consider casting to 'unsigned char' first. [bugprone-signed-char-misuse]
       86 |     coptopt = arg[optpos];
    ```
    
    Also:
    - tests/server/mqttd: drop a redundant and a wrongly signed cast.
    
    Ref: https://clang.llvm.org/extra/clang-tidy/checks/bugprone/signed-char-misuse.html
    
    Closes #20654

    Changed files

    • .clang-tidy.yml
    • lib/curlx/inet_pton.c
    • lib/mime.c
    • lib/vtls/openssl.c
    • src/tool_urlglob.c
    • tests/libtest/first.c
    • tests/server/mqttd.c
    • tests/server/tftpd.c
  3. Change #258915

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 25 Feb 2026 14:44:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision af78b199b2fb291470c4cd3c478e19cc5d4cd753

    Comments

    tidy-up: miscellaneous
    - vms/curlmsg_vms.h: delete unused/commented code.
    - vtls/schannel_verify: sort includes.
    - typecheck-gcc.h: fix indent and alignment.
    - lib/config-win32.h: drop idle `#undef`.
    - spacecheck: check for stray empty lines before after curly braces.
    - make literals more readable: 1048576 -> 1024 * 1024
    - scope variables.
    - use ISO date in a comment.
    - drop redundant parentheses.
    - drop empty comments.
    - unfold lines.
    - duplicate/stray spaces in comments.
    - fix indent, whitespace, minor typos.
    
    Closes #20690

    Changed files

    • CMake/CurlTests.c
    • CMakeLists.txt
    • docs/DEPRECATE.md
    • docs/examples/chkspeed.c
    • docs/examples/externalsocket.c
    • docs/examples/getinmemory.c
    • docs/examples/htmltidy.c
    • docs/examples/http2-pushinmemory.c
    • docs/examples/imap-search.c
    • docs/examples/maxconnects.c
    • docs/examples/postinmemory.c
    • docs/examples/sepheaders.c
    • docs/examples/smtp-expn.c
    • docs/examples/smtp-vrfy.c
    • docs/examples/url2file.c
    • docs/examples/version-check.pl
    • docs/libcurl/curl_mime_data.md
    • docs/libcurl/opts/CURLOPT_PROGRESSDATA.md
    • docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.md
    • docs/libcurl/opts/CURLOPT_TLSAUTH_PASSWORD.md
    • docs/libcurl/opts/CURLOPT_TLSAUTH_TYPE.md
    • docs/libcurl/opts/CURLOPT_TLSAUTH_USERNAME.md
    • docs/libcurl/opts/CURLOPT_WRITEFUNCTION.md
    • docs/libcurl/opts/CURLOPT_XFERINFODATA.md
    • docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.md
    • docs/libcurl/symbols.pl
    • include/curl/curl.h
    • include/curl/header.h
    • include/curl/system.h
    • include/curl/typecheck-gcc.h
    • lib/altsvc.c
    • lib/asyn-ares.c
    • lib/cfilters.h
    • lib/config-win32.h
    • lib/connect.c
    • lib/curl_addrinfo.c
    • lib/curl_config-cmake.h.in
    • lib/curl_printf.h
    • lib/curl_sasl.h
    • lib/curlx/timeval.c
    • lib/escape.h
    • lib/fake_addrinfo.c
    • lib/ftp.c
    • lib/http.c
    • lib/http2.c
    • lib/http_aws_sigv4.c
    • lib/imap.c
    • lib/mprintf.c
    • lib/mqtt.c
    • lib/netrc.c
    • lib/openldap.c
    • lib/select.h
    • lib/sendf.h
    • lib/setup-vms.h
    • lib/sha256.c
    • lib/smb.c
    • lib/smtp.c
    • lib/socks.c
    • lib/socks_sspi.c
    • lib/system_win32.c
    • lib/url.c
    • lib/urldata.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/openssl.c
    • lib/vtls/schannel.c
    • lib/vtls/schannel_verify.c
    • lib/vtls/vtls.h
    • lib/vtls/wolfssl.c
    • projects/vms/curlmsg_vms.h
    • scripts/checksrc.pl
    • scripts/managen
    • scripts/spacecheck.pl
    • scripts/top-complexity
    • src/tool_doswin.c
    • src/tool_getparam.c
    • src/tool_parsecfg.c
    • src/tool_urlglob.c
    • src/tool_vms.c
    • tests/libtest/lib2405.c
    • tests/libtest/mk-lib1521.pl
    • tests/libtest/test613.pl
    • tests/memanalyzer.pm
    • tests/runtests.pl
    • tests/server/socksd.c
    • tests/servers.pm
    • tests/test1139.pl
    • tests/unit/unit1664.c
    • tests/unit/unit2600.c