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

Builder curl-threaded-solaris10-i386 Build #4360

Build In Progress:

Runtest

SourceStamp:

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

BuildSlave:

unstable10x

Reason:

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

Steps and Logfiles:

  1. git update ( 11 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( running )
    1. stdio
    2. resultlog
    1. - no logs -

Build Properties:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartTue Apr 21 11:36:49 2026
Elapsed5 hrs, 28 mins, 51 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