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

Builder curl-unthreaded-solaris11-sparc Build #6273

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 9 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 23 mins, 36 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 6273 Build
codebase Build
got_revision 5c61e168698a72b87437d58ed728bcdea6d5db42 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 5c61e168698a72b87437d58ed728bcdea6d5db42 Build
scheduler schedule-curl-unthreaded-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. zaveshaa

Timing:

StartSat Aug 22 14:38:06 2026
EndSat Aug 22 15:31:09 2026
Elapsed53 mins, 3 secs

All Changes:

:

  1. Change #278913

    Category curl
    Changed by zaveshaa <zaveshaaohnoyoudont@gmail.com>
    Changed at Sat 22 Aug 2026 16:18:50
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5c61e168698a72b87437d58ed728bcdea6d5db42

    Comments

    docs: make 5 example snippets compile cleanly with clang
    verify-examples.pl invokes 'gcc', which on macOS is clang. With
    -Wall -Wextra... -Werror -pedantic, clang rejects two patterns that
    GNU gcc accepts:
    
    - passing a char * to %p without a cast (-Wformat-pedantic): the C
      standard says %p expects void *, so cast explicitly in the
      CURLOPT_PROGRESSDATA, CURLOPT_PROGRESSFUNCTION, CURLOPT_XFERINFODATA
      and CURLOPT_XFERINFOFUNCTION examples
    
    - returning CURLcode result from main() when curl_easy_init() returned
      NULL leaves it uninitialized (-Wsometimes-uninitialized) in the
      CURLINFO_TLS_SSL_PTR example: initialize it to CURLE_OK like other
      man pages already do
    
    Closes #22638

    Changed files

    • docs/libcurl/opts/CURLINFO_TLS_SSL_PTR.md
    • docs/libcurl/opts/CURLOPT_PROGRESSDATA.md
    • docs/libcurl/opts/CURLOPT_PROGRESSFUNCTION.md
    • docs/libcurl/opts/CURLOPT_XFERINFODATA.md
    • docs/libcurl/opts/CURLOPT_XFERINFOFUNCTION.md