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

Builder curl-unthreaded-solaris11-sparc Build #6175

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11s

Reason:

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

Steps and Logfiles:

  1. git update ( 22 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 40 mins, 51 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-sparc slave
buildername curl-unthreaded-solaris11-sparc Builder
buildnumber 6175 Build
codebase Build
got_revision 133785b15936d9417fdc41f77b87304b6bf458d5 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 133785b15936d9417fdc41f77b87304b6bf458d5 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. Viktor Szakats

Timing:

StartWed Aug 5 17:54:23 2026
EndWed Aug 5 19:11:01 2026
Elapsed1 hrs, 16 mins, 37 secs

All Changes:

:

  1. Change #277134

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Wed 05 Aug 2026 19:34:52
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 133785b15936d9417fdc41f77b87304b6bf458d5

    Comments

    servers: drop re-registering the signal handler on modern systems
    Before this patch modern systems used `sigaction()` and `SA_RESTART` to
    install signal handlers, but the signal handler function itself still
    made a call to the legacy `signal()` function to re-register itself
    before returning.
    
    Re-registering the handler is not necessary with `sigaction()`. It's
    also undesired to use the legacy API when the modern one is available.
    
    Fix by guarding off this call in builds that support the modern API.
    
    Follow-up to 3fb6e5a01001b8c7dfdc33a89041178aac381a27 #6529
    Follow-up to 18cbb4d7d645016d1a9c0ee772c724d8c41db3bd
    
    Closes #22497

    Changed files

    • tests/server/util.c