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

Builder curl-pr-unthreaded-solaris10-i386 Build #3727

Results:

Build successful

SourceStamp:

Projectcurl/curl
Repositoryhttps://github.com/curl/curl
Branchmaster
Revision87168807b215b83141220b34ebb30a3e51e61770
Got Revision87168807b215b83141220b34ebb30a3e51e61770
Changes5 changes

BuildSlave:

unstable10x

Reason:

The AnyBranchScheduler scheduler named 'schedule-curl-pr' triggered this build

Steps and Logfiles:

  1. git update ( 8 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 1 hrs, 10 mins, 53 secs )
    1. stdio
    2. resultlog

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-pr-unthreaded-solaris10-i386 slave
buildername curl-pr-unthreaded-solaris10-i386 Builder
buildnumber 3727 Build
codebase Build
got_revision 87168807b215b83141220b34ebb30a3e51e61770 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl/curl Build
repository https://github.com/curl/curl Build
revision 87168807b215b83141220b34ebb30a3e51e61770 Build
scheduler schedule-curl-pr Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-pr-unthreaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Jay Satiro
  3. Viktor Szakats
  4. Yedaya Katsman

Timing:

StartThu Apr 3 07:36:23 2025
EndThu Apr 3 09:54:31 2025
Elapsed2 hrs, 18 mins, 7 secs

All Changes:

:

  1. Change #226422

    Category None
    Changed by Yedaya Katsman <yedaya.kaohnoyoudont@gmail.com>
    Changed at Wed 02 Apr 2025 22:46:53
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 878d1fc3406c5bce5ac48af320f43e3cee6456a4

    Comments

    tests/serverhelp: remove last remnants of http-pipe server
    
    Followup on https://github.com/curl/curl/pull/5921
    
    Closes #16924

    Changed files

    • tests/serverhelp.pm
  2. Change #226423

    Category None
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Wed 02 Apr 2025 22:51:06
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 673c56a034b238de59b22e354efa6d5c6d68670a

    Comments

    RELEASE-NOTES: synced
    
    and bump to 8.13.1 for now

    Changed files

    • RELEASE-NOTES
    • include/curl/curlver.h
  3. Change #226440

    Category None
    Changed by Jay Satiro <raysatiroohnoyoudont@yahoo.com>
    Changed at Wed 02 Apr 2025 23:45:57
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision e0b4ea889f5e5caffe9dc3cb750e9d1ba85973b4

    Comments

    INSTALL-CMAKE.md: fix typo

    Changed files

    • docs/INSTALL-CMAKE.md
  4. Change #226442

    Category None
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 03 Apr 2025 00:19:06
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 22352e627da60fc1b3965f4aa95ef5219a9df845

    Comments

    configure: restore link checks
    
    The omitted link checks were not what I though they were. Omitting one
    caused a mis-detection on Solaris, where the compile check alone
    mis-detects `CloseSocket` as present.
    
    Restore link checks for these functions:
    `closesocket`, `ioctlsocket`, `socket`, `freeaddrinfo`, `getaddrinfo`,
    `gethostname`, `getpeername`, `getsockname`,
    `CloseSocket` (AmigaOS), `IoctlSocket` (AmigaOS).
    
    Also re-sync link check code snippets with the ones in current master.
    
    Partial revert of, regression from bd9f9b085aa242a5e93be0b2da96ce498d7813c4 #16377
    Reported-by: Dagobert Michelsen
    Bug: https://curl.se/mail/lib-2025-04/0004.html
    Fixes #16915
    Closes #16917

    Changed files

    • m4/curl-functions.m4
  5. Change #226449

    Category None
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Thu 03 Apr 2025 01:12:19
    Repository https://github.com/curl/curl
    Project curl/curl
    Branch master
    Revision 87168807b215b83141220b34ebb30a3e51e61770

    Comments

    eventfd: fix feature guards
    
    Enable eventfd code consistently when both `HAVE_EVENTFD` and
    `HAVE_SYS_EVENTFD_H` macros are defined.
    
    Before this patch `HAVE_EVENTFD` guarded it alone, though the code
    also required the header, which was guarded by `HAVE_SYS_EVENTFD_H`.
    
    These should normally be detected in pairs. When they aren't, omit using
    `eventfd()` to avoid calling it without a known matching header.
    
    If this disables valid cases (e.g. some system declares this function
    via a different header), feature detection and the code may be extended
    for those cases. If these are known to come in pairs, always, another
    option is detect them both at build stage, and forward a single macro
    to C.
    
    Reported-by: Abhinav Singhal
    Bug: https://curl.se/mail/lib-2025-04/0000.html
    Closes #16909

    Changed files

    • lib/asyn-thread.c
    • lib/curl_setup.h
    • lib/multi.c
    • lib/socketpair.c
    • lib/socketpair.h