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

Builder curl-unthreaded-solaris11-i386 Build #5304

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionf3c11692a9881b2d74263e20749ff58da1fd8443
Got Revisionf3c11692a9881b2d74263e20749ff58da1fd8443
Changes2 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-unthreaded-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 40 mins, 21 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-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5304 Build
codebase Build
got_revision f3c11692a9881b2d74263e20749ff58da1fd8443 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision f3c11692a9881b2d74263e20749ff58da1fd8443 Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Jun 29 12:54:04 2026
EndMon Jun 29 14:18:20 2026
Elapsed1 hrs, 24 mins, 16 secs

All Changes:

:

  1. Change #273178

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 29 Jun 2026 14:27:56
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision c9d8a6bc1084cae8b9f63a504bdfc7c00230f4ff

    Comments

    mod_curltest: fix compiler warnings
    ```
    mod_curltest.c:331:25: warning: result of comparison of unsigned expression >= 0 is always true [-Wtautological-unsigned-zero-compare]
      331 |           if(chunk_size >= 0) {
          |              ~~~~~~~~~~ ^  ~
    mod_curltest.c:421:9: warning: declaration shadows a local variable [-Wshadow]
      421 |     int i, hd_len = (16 * 1024);
          |         ^
    mod_curltest.c:288:7: note: previous declaration is here
      288 |   int i, chunks = 3, error_bucket = 1;
          |       ^
    mod_curltest.c:501:40: warning: format specifies type 'int' but the argument has type 'unsigned int' [-Wformat]
      500 |                 "error_handler: request cleanup, r->status=%d, aborted=%d, "
          |                                                                        ~~
          |                                                                        %u
      501 |                 "close=%d", r->status, c->aborted, close_conn);
          |                                        ^~~~~~~~~~
    mod_curltest.c:837:1: warning: missing field 'lock' initializer [-Wmissing-field-initializers]
      837 | };
          | ^
    mod_curltest.c:914:43: warning: format specifies type 'int' but the argument has type 'apr_time_t' (aka 'long') [-Wformat]
      914 |     char *v = apr_psprintf(r->pool, "%d", limitrec.duration_sec);
          |                                      ~~   ^~~~~~~~~~~~~~~~~~~~~
          |                                      %ld
    mod_curltest.c:956:16: warning: unused variable 'rv' [-Wunused-variable]
      956 |   apr_status_t rv;
          |                ^~
    ```
    
    Closes #22214

    Changed files

    • tests/http/testenv/mod_curltest/mod_curltest.c
  2. Change #273179

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 29 Jun 2026 14:34:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f3c11692a9881b2d74263e20749ff58da1fd8443

    Comments

    CURLOPT_SSH_*_KEYFILE: used for setting up, then no more
    So changing them after the connection is made still allows libcurl to
    reuse the existing connections.
    
    Reported-by: Bigtang on hackerone
    Closes #22211

    Changed files

    • docs/libcurl/opts/CURLOPT_SSH_PRIVATE_KEYFILE.md
    • docs/libcurl/opts/CURLOPT_SSH_PUBLIC_KEYFILE.md