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

Builder curl-ares-solaris11-sparc Build #4257

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision44f53078914d1f827bfb3252276d58feb3ca82b5
Got Revision44f53078914d1f827bfb3252276d58feb3ca82b5
Changes3 changes

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 ...' ( 27 mins, 11 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-ares-solaris11-sparc slave
buildername curl-ares-solaris11-sparc Builder
buildnumber 4257 Build
codebase Build
got_revision 44f53078914d1f827bfb3252276d58feb3ca82b5 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 44f53078914d1f827bfb3252276d58feb3ca82b5 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. Stefan Eissing
  2. Viktor Szakats

Timing:

StartMon Jul 28 11:13:25 2025
EndMon Jul 28 12:34:31 2025
Elapsed1 hrs, 21 mins, 6 secs

All Changes:

:

  1. Change #240932

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 28 Jul 2025 10:32:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 5debe7cb34bb6f0ee094515c17b7662e386829fb

    Comments

    CURLOPT: drop redundant `long` casts
    Also:
    - CURLOPT_HSTS_CTRL.md: sync macro definitions with `curl/curl.h`.
      Perhaps it'd be better to delete copies like this?
    - keep existing casts within the documentation to make sure it applies
      to older curl versions as well.
    - CURLOPT_IPRESOLVE.md: re-add a long cast to man page, for consistency
      with the above.
    
    Closes #17791

    Changed files

    • docs/examples/anyauthput.c
    • docs/examples/ghiper.c
    • docs/examples/hsts-preload.c
    • docs/examples/http3.c
    • docs/examples/imap-tls.c
    • docs/examples/pop3-tls.c
    • docs/examples/smtp-tls.c
    • docs/libcurl/opts/CURLOPT_HSTS_CTRL.md
    • docs/libcurl/opts/CURLOPT_HTTP_VERSION.md
    • docs/libcurl/opts/CURLOPT_IPRESOLVE.md
    • src/config2setopts.c
    • tests/client/hx_download.c
    • tests/client/hx_upload.c
    • tests/libtest/lib1511.c
    • tests/libtest/lib1513.c
    • tests/libtest/lib1555.c
    • tests/libtest/lib1568.c
    • tests/libtest/lib1593.c
    • tests/libtest/lib1599.c
    • tests/libtest/lib1662.c
    • tests/libtest/lib2309.c
    • tests/libtest/lib2502.c
    • tests/libtest/lib510.c
    • tests/libtest/lib540.c
    • tests/libtest/lib547.c
    • tests/libtest/lib552.c
    • tests/libtest/lib555.c
    • tests/libtest/lib579.c
    • tests/libtest/lib583.c
    • tests/libtest/lib590.c
    • tests/libtest/lib678.c
    • tests/libtest/lib694.c
  2. Change #240933

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 28 Jul 2025 10:32:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 430f9b03fd2b11804e6ae6147efaefb1f5a9916d

    Comments

    CURLOPT: bump `CURLFTP*` enums to `long`, drop casts
    This patch bumps the size of these constants from `int` to `long`, while
    keeping their actual values the same. It may cause incompatibilities in
    user code, requiring the bump of holder variables and/or adding casts:
    
    - CURLFTP_CREATE_DIR
    - CURLFTP_CREATE_DIR_NONE
    - CURLFTP_CREATE_DIR_RETRY
    - CURLFTPAUTH_DEFAULT
    - CURLFTPAUTH_SSL
    - CURLFTPAUTH_TLS
    - CURLFTPMETHOD_DEFAULT
    - CURLFTPMETHOD_MULTICWD
    - CURLFTPMETHOD_NOCWD
    - CURLFTPMETHOD_SINGLECWD
    - CURLFTPSSL_CCC_ACTIVE
    - CURLFTPSSL_CCC_NONE
    - CURLFTPSSL_CCC_PASSIVE
    
    Also:
    - keep existing casts within the documentation to make sure it applies
      to older curl versions as well.
    
    Closes #17797

    Changed files

    • docs/libcurl/opts/CURLOPT_FTP_CREATE_MISSING_DIRS.md
    • include/curl/curl.h
    • lib/ftp.c
    • lib/setopt.c
    • src/config2setopts.c
    • src/tool_cfgable.h
    • src/tool_paramhlp.c
    • src/tool_paramhlp.h
    • tests/libtest/lib539.c
    • tests/libtest/lib661.c
  3. Change #240941

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 28 Jul 2025 10:53:51
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 44f53078914d1f827bfb3252276d58feb3ca82b5

    Comments

    multi: fix assert in multi_getsock()
    Now that multi keeps the "dirty" bitset, the detection of possibly
    stalling transfers needs to adapt. Before dirty, transfers needed
    to expose a socket to poll or a timer to wait for.
    
    Dirty transfer might no longer have a timer, but will run, so do
    not need to report a socket. Adjust the assert condition.
    
    Fixes #18046
    Reported-by: Viktor Szakats
    Closes #18051

    Changed files

    • lib/multi.c