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

Builder curl-unthreaded-solaris10-sparc Build #13672

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable10s

Reason:

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

Steps and Logfiles:

  1. git update ( 23 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 13 mins, 7 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 0 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave
buildername curl-unthreaded-solaris10-sparc Builder
buildnumber 13672 Build
codebase Build
got_revision 969351bb1e5778a8f17f6ccb1c71b7c4378444c3 Git
osplatform SPARC SetPropertyFromCommand Step
osrelease 10 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 969351bb1e5778a8f17f6ccb1c71b7c4378444c3 Build
scheduler schedule-curl-unthreaded-solaris10-sparc Scheduler
slavename unstable10s BuildSlave
workdir /export/home/buildbot-unstable10s/slave/curl-unthreaded-solaris10-sparc slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartSat Dec 20 14:25:13 2025
EndSat Dec 20 15:11:42 2025
Elapsed46 mins, 28 secs

All Changes:

:

  1. Change #252840

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 20 Dec 2025 13:51:04
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 43baf7a4269b7356cea5a49e695a3d09b98c8b59

    Comments

    lib: drop unused `rand.h` includes
    Closes #20047

    Changed files

    • lib/formdata.c
    • lib/http2.c
    • lib/vquic/curl_osslq.c
    • lib/vtls/vtls.c
  2. Change #252841

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 20 Dec 2025 13:51:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a468e605eb5475c7d37225b981ca1169d117d346

    Comments

    openssl: drop includes unused or duplicate
    Also:
    - vquic-tls.h: do not include unused headers for non-H3 builds.
    - autotools: stop looking for `openssl/x509.h` header.
    - cmp-config.pl: delete exception for `openssl/x509.h`.
    - examples: format/comment sync between the two touched files.
    - openssl: drop unused `curlx/wait.h` include.
    
    Closes #20049

    Changed files

    • .github/scripts/cmp-config.pl
    • docs/examples/cacertinmem.c
    • docs/examples/usercertinmem.c
    • lib/vquic/vquic-tls.h
    • lib/vtls/openssl.c
    • lib/vtls/schannel.h
    • m4/curl-amissl.m4
    • m4/curl-openssl.m4
    • tests/libtest/lib758.c
  3. Change #252844

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Sat 20 Dec 2025 14:16:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 969351bb1e5778a8f17f6ccb1c71b7c4378444c3

    Comments

    windows: fix `CreateFile()` calls to support long filenames
    It makes them work in Schannel's CA bundle loader, and curl tool's
    set/get file timestamp operations (e.g. in `-R`/`--remote-time`). Also
    to match file open operations, that already support long filenames.
    
    E.g. when using `--remote-time`, fixing:
    ```
    Warning: Failed to set filetime 1741363917 on outfile: CreateFile failed:
    Warning: GetLastError 0x00000003
    ```
    
    The special long filename logic is necessary to support Windows releases
    prior to Windows 10 v1607. With the latter, it's possible to opt-in to
    this behavior via a manifest setting. Note that Windows itself also needs
    to opt-in to support this. Finally note that curl itself needs passing
    `--globoff` to let long filenames through, pending #20044 and #20046.
    
    Refs:
    https://learn.microsoft.com/windows/win32/api/fileapi/nf-fileapi-createfilea
    https://learn.microsoft.com/windows/win32/fileio/maximum-file-path-limitation
    
    Ref: #8361
    Inspired by: #19286
    Inspired-by: Mathesh V
    Closes #19286
    Closes #20040

    Changed files

    • docs/internals/CODE_STYLE.md
    • lib/curlx/fopen.c
    • lib/curlx/fopen.h
    • lib/vtls/schannel_verify.c
    • scripts/checksrc.pl
    • src/tool_filetime.c