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

Builder curl-ares-solaris10-sparc Build #3562

Build In Progress:

ETA: 19:03:26 [17 mins, 43 secs]

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision4daf483b5be8a6524f9aa4135a1dcae0a9c8ec38
Changes7 changes

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-ares-solaris10-sparc slave
buildername curl-ares-solaris10-sparc Builder
buildnumber 3562 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 4daf483b5be8a6524f9aa4135a1dcae0a9c8ec38 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. Viktor Szakats

Timing:

StartTue Apr 21 15:55:09 2026
Elapsed2 hrs, 50 mins, 33 secs

All Changes:

:

  1. Change #265075

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 08:33:28
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4e0bfd8cf73603697ddad5d25e946e9f53d6831a

    Comments

    mprintf: simplify parsefmt
    - split out parse_flags() and parse_conversion() to reduce complexity
      from 57 to 30.
    
    Closes #21391

    Changed files

    • lib/mprintf.c
  2. Change #265077

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 08:35:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 19695e815c51f8830fc542557a50f6a7100cd862

    Comments

    tool_operate: split create_single into smaller sub functions
    Reduces complexity from 58 => 32.
    
    Closes #21389

    Changed files

    • src/tool_operate.c
  3. Change #265097

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Apr 2026 10:09:58
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5ff7f773106176d60d6f3386017b58b3b01edb41

    Comments

    wolfssl: fix `-Wmissing-prototypes`
    Seen with unity, H3, wolfssl with `HAVE_EX_DATA`.
    
    Fixing:
    ```
    lib/vtls/wolfssl.c:412:10: error: no previous prototype for function 'Curl_wssl_cache_session' [-Wmissing-prototypes]
      412 | CURLcode Curl_wssl_cache_session(struct Curl_cfilter *cf,
          |          ^
    lib/vtls/wolfssl.c:412:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
      412 | CURLcode Curl_wssl_cache_session(struct Curl_cfilter *cf,
          | ^
          | static
    1 error generated.
    ```
    
    Follow-up to cc5c1553fbdb8c1391d0cf81134583ee32da64d4 #19852
    
    Closes #21392

    Changed files

    • lib/vtls/wolfssl.h
  4. Change #265115

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 14:22:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 2e3607034dcbbc97aa587d878b866a2af6b99c99

    Comments

    parsedate: refactor
    - introduce 'struct when' to hold the parser result
    - initwhen() initializes a 'struct when'
    - datestring() parses strings
    - datenum() parses numbers
    - datecheck() does some final checks
    - tzadjust() adds the time zone offset
    - convert math to 64 bit, squeeze into time_t only in the last step,
      mktimet() does the time_t storing
    
    Closes #21394

    Changed files

    • lib/parsedate.c
    • tests/libtest/lib517.c
  5. Change #265117

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Tue 21 Apr 2026 14:35:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8eb3cb75a3e1244be4e2b20a3509d923f2144bd0

    Comments

    misc: fix code quality findings
    - httpsrr: drop redundant checks.
      Follow-up to 809dda3a37363160d4bf5ea2dafa0bcb8188a3f0 #21354
    - httpsrr.h: drop obsolete comment.
      Follow-up to 2b3dfb4ad47ec05efad9af930c47968a49916999 #21175
    - ws: drop redundant check in `curl_ws_start_frame()`.
      Follow-up to 37cecfc7b91118f116cf16af8f50a18b15d00d51 #17683
    - ws: fix typo in comment.
    - tool_operate: fix VMS build. (broken since 2019-07-20, v7.66.0)
      Follow-up to b88940850002a3f1c25bc6488b95ad30eb80d696 #3804
    
    Pointed out by Copilot Code Quality
    
    Closes #21393

    Changed files

    • lib/httpsrr.c
    • lib/httpsrr.h
    • lib/ws.c
    • src/tool_operate.c
  6. Change #265127

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 15:21:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4f7e323b29fbc8dfb818c686d9f644660ebe3178

    Comments

    mprintf: OR the flags
    As 'flags' may already have been set to something when
    parse_conversion() is called, make sure to only OR the new flags.
    
    Follow-up to 4e0bfd8cf73603697ddad5d25e94
    
    Closes #21398

    Changed files

    • lib/mprintf.c
  7. Change #265128

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 21 Apr 2026 15:21:16
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 4daf483b5be8a6524f9aa4135a1dcae0a9c8ec38

    Comments

    lib557: add tests with flags AND conversion specifier
    Remove superfluous and never-built test code for systems with 16-bit and
    64-bit ints and 16-bit longs, as we don't know any such.

    Changed files

    • tests/libtest/lib557.c