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

Builder curl-unthreaded-solaris11-i386 Build #5390

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 12 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 10 mins, 2 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 13 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 5390 Build
codebase Build
got_revision aad438d53569de2f29a54f6c65755fb0e7f0ed8f Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision aad438d53569de2f29a54f6c65755fb0e7f0ed8f 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. Max Dymond

Timing:

StartMon Sep 21 11:56:01 2026
EndMon Sep 21 14:15:57 2026
Elapsed2 hrs, 19 mins, 55 secs

All Changes:

:

  1. Change #282422

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 21 Sep 2026 11:29:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 66c41484d0645831ac5ca7c859f56015c3c3a74d

    Comments

    CURLINFO_EFFECTIVE_URL.md: mention a short lifetime
    Closes #23015

    Changed files

    • docs/libcurl/opts/CURLINFO_EFFECTIVE_URL.md
  2. Change #282445

    Category curl
    Changed by Max Dymond <cmeister2ohnoyoudont@gmail.com>
    Changed at Mon 21 Sep 2026 12:10:55
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e0c8b4b451496d51eaaaa86b3343d4649f7362d2

    Comments

    base64: avoid repeated input loads when encoding
    Pack each input triplet into a uint32_t before writing the four encoded
    characters. This avoids redundant input loads when the compiler cannot
    rule out aliasing between input and output.
    
    Keep byte-wise reads, both alphabets, padding and tail handling unchanged.
    Document the load-before-store ordering to preserve the optimization.
    
    Extend unit1302 with binary round-trip tests for lengths 1 through 256,
    including output-length and NUL-termination checks.
    
    Closes #23017

    Changed files

    • lib/curlx/base64.c
    • tests/unit/unit1302.c
  3. Change #282449

    Category curl
    Changed by Max Dymond <cmeister2ohnoyoudont@gmail.com>
    Changed at Mon 21 Sep 2026 12:36:45
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision aad438d53569de2f29a54f6c65755fb0e7f0ed8f

    Comments

    mprintf: avoid scanning strings twice for unbounded %s
    When precision is unspecified, out_string() already knows the exact
    string length. Pass it directly to stream_run() instead of scanning
    again in stream_zrun().
    
    Keep the bounded, NUL-aware scan for explicit precision, including
    non-NUL-terminated buffers. Document why the two paths differ.
    
    Closes #23019

    Changed files

    • lib/mprintf.c