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

Builder curl-ares-solaris11-i386 Build #4840

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionce6c441cf243ab822d50b926da1ce5078d7f0766
Got Revisionce6c441cf243ab822d50b926da1ce5078d7f0766
Changes4 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. Viktor Szakats

Timing:

StartMon Mar 30 19:52:19 2026
EndMon Mar 30 21:51:29 2026
Elapsed1 hrs, 59 mins, 9 secs

All Changes:

:

  1. Change #262887

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 30 Mar 2026 18:39:12
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8deaf04febba87b0253a5421c663197739c374ca

    Comments

    fopen: for temp files, inherit permissions only for owner
    When creating a temp file in order to later replace an original, copying
    over the existing permissions can not be considered safe when the user
    running libcurl is not the owner of the existing file.
    
    Closes #21092

    Changed files

    • lib/curl_fopen.c
  2. Change #262890

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 30 Mar 2026 18:50:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7deed5bb5599e4f8269d7d567ba0f2e3122a6826

    Comments

    wolfssl: fix build without TLS 1.3 support
    Follow-up to: eac64c187997a3bdbdc27c
    
    Closes #21161

    Changed files

    • lib/vtls/wolfssl.c
  3. Change #262891

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 30 Mar 2026 18:50:44
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 9f7295fb23727280c2bd60f0924dbf76b5112da7

    Comments

    test445: fix error code, remove SMB use
    The test should now expect error 7. SMB is now opt-in, so not used in as
    many builds anymore.
    
    Follow-up to a186ecf4bf0c8ebb3a
    
    Closes #21160

    Changed files

    • tests/data/test445
  4. Change #262895

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 30 Mar 2026 18:57:07
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ce6c441cf243ab822d50b926da1ce5078d7f0766

    Comments

    build: drop redundant `HAVE_PTHREAD_H` guard
    Prior to this patch code used either `HAVE_PTHREAD_H`, or
    `HAVE_THREADS_POSIX`, or both, to decide if POSIX Threads support is
    present. In effect requiring both to be defined for a consistent build.
    
    Drop detecting and guarding for `pthread.h`, and assume it present when
    `HAVE_THREADS_POSIX` is set.
    
    OS/400 had `HAVE_PTHREAD_H` set, but not `HAVE_THREADS_POSIX`, which
    possibly left threading disabled in most sources.
    
    Ref: https://pubs.opengroup.org/onlinepubs/009695399/basedefs/pthread.h.html
    Ref: 930f2e822715d4602326d549e5a8085ee8c3ec11 #21144
    
    Closes #21158

    Changed files

    • CMakeLists.txt
    • configure.ac
    • docs/examples/threaded.c
    • lib/config-os400.h
    • lib/curl_config-cmake.h.in
    • lib/curl_setup.h
    • lib/easy_lock.h
    • tests/libtest/lib1565.c
    • tests/libtest/lib3026.c