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

Builder curl-ares-solaris11-sparc Build #6051

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 7 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 2 mins, 39 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-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 6051 Build
codebase Build
got_revision 526d3b8a53f19874544a8cc9695ac88ddbde3493 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 526d3b8a53f19874544a8cc9695ac88ddbde3493 Build
scheduler schedule-curl-ares-solaris11-sparc Scheduler
slavename unstable11s BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Jun 15 22:09:57 2026
EndMon Jun 15 23:01:27 2026
Elapsed51 mins, 30 secs

All Changes:

:

  1. Change #271217

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 15 Jun 2026 22:04:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 526d3b8a53f19874544a8cc9695ac88ddbde3493

    Comments

    servers: silence `-Wunused-result` with pragma
    In some configurations the `write()` functions gets the
    `warn_unused_result` attribute, that makes casting to `(void)`
    ineffective to silence this warning. Seen with glibc, in 5 CI jobs.
    The warning option appeared in GCC 4.5 and comes enabled by default.
    
    ```
    tests/server/util.c:329:5: error: ignoring return value of ‘write’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
      329 |     write(STDERR_FILENO, msg, sizeof(msg) - 1);
          |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ```
    Ref: https://github.com/curl/curl/actions/runs/27548333990/job/81427544632
    
    Refs:
    https://github.com/curl/curl/pull/22023#issuecomment-4708455631
    https://gcc.gnu.org/onlinedocs/gcc-16.1.0/gcc/Warning-Options.html#index-Wunused-result
    https://gcc.gnu.org/onlinedocs/gcc-16.1.0/gcc/Common-Attributes.html#index-warn_005funused_005fresult
    https://stackoverflow.com/questions/40576003/ignoring-warning-wunused-result
    
    Follow-up to c8d8f081fd62c68c588f8963a8e441c730a23b5b #22023
    Follow-up to e95f509c66abdd88ae02e3243cdc217f19c4a330 #16852
    
    Closes #22034

    Changed files

    • tests/server/util.c