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

Builder curl-threaded-solaris11-sparc Build #5175

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision61093e2a819d26b7ddf309baef264b9e50c6c56f
Got Revision61093e2a819d26b7ddf309baef264b9e50c6c56f
Changes1 change

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 6 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 13 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-threaded-solaris11-sparc slave
buildername curl-threaded-solaris11-sparc Builder
buildnumber 5175 Build
codebase Build
got_revision 61093e2a819d26b7ddf309baef264b9e50c6c56f Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 61093e2a819d26b7ddf309baef264b9e50c6c56f Build
scheduler schedule-curl-threaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartWed Jan 21 13:26:31 2026
EndWed Jan 21 13:49:52 2026
Elapsed23 mins, 20 secs

All Changes:

:

  1. Change #255913

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 21 Jan 2026 13:18:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 61093e2a819d26b7ddf309baef264b9e50c6c56f

    Comments

    build: fully omit verbose strings and code when disabled
    When the compiler supports C99.
    
    - map logging functions to macro stubs when verbose logging is disabled
      and the compiler is C99. Make sure these stubs silence unused variable
      warnings for non-variadic arguments.
      Before this patch they mapped to function stubs, the same codepath
      used for C89 compiler in this configuration.
    
    - introduce new macros to tell the compiler which code to include
      when verbose code is active, or inactive:
    
      - `CURLVERBOSE`: defined when verbose code is active.
        To enclose blocks of code only used for verbose logging.
    
      - `VERBOSE(statement);`:
        compile statement when verbose code is active.
        To mark code lines only used for verbose logging.
    
      - `NOVERBOSE(statement);`:
        compile statement when verbose code is inactive.
        To suppress warnings for arguments passed to logging functions via
        printf masks, e.g. `NOVERBOSE((void)ipaddress);`, yet keeping
        the warning in verbose builds.
    
      Note these macros are not the same as `CURL_DISABLE_VERBOSE_STRINGS`.
      Verbose code is always active in C89 mode (without variadic macro
      support).
    
    - drop existing uses of `CURL_DISABLE_VERBOSE_STRINGS` where redundant,
      or replace with the above macros. Ending up reducing the number of
      `#ifdef`s, and also the number of lines.
    
    Assisted-by: Daniel Stenberg
    Assisted-by: Jay Satiro
    Reported-by: Dan Fandrich
    Fixes #20341
    Refs: #12105 #12167
    
    Closes #20353

    Changed files

    • .github/workflows/linux.yml
    • lib/arpa_telnet.h
    • lib/asyn-ares.c
    • lib/cf-h2-proxy.c
    • lib/cf-ip-happy.c
    • lib/cf-socket.c
    • lib/cfilters.c
    • lib/connect.c
    • lib/connect.h
    • lib/curl_sasl.c
    • lib/curl_setup.h
    • lib/curl_trc.c
    • lib/curl_trc.h
    • lib/curlx/strerr.c
    • lib/curlx/winapi.c
    • lib/cw-out.c
    • lib/doh.c
    • lib/ftp.c
    • lib/hostip.c
    • lib/http.c
    • lib/http2.c
    • lib/imap.c
    • lib/multi.c
    • lib/multi_ev.c
    • lib/openldap.c
    • lib/pop3.c
    • lib/smb.c
    • lib/smtp.c
    • lib/socks.c
    • lib/socks_sspi.c
    • lib/strerror.c
    • lib/telnet.c
    • lib/tftp.c
    • lib/url.c
    • lib/urldata.h
    • lib/vauth/digest_sspi.c
    • lib/vquic/curl_ngtcp2.c
    • lib/vquic/curl_quiche.c
    • lib/vquic/vquic.c
    • lib/vquic/vquic_int.h
    • lib/vssh/libssh.c
    • lib/vssh/libssh2.c
    • lib/vtls/apple.c
    • lib/vtls/gtls.c
    • lib/vtls/mbedtls.c
    • lib/vtls/openssl.c
    • lib/vtls/schannel.c
    • lib/ws.c
    • tests/unit/unit2600.c