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

Builder curl-unthreaded-solaris11-i386 Build #4016

Results:

Build successful

SourceStamp:

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

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

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

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Viktor Szakats

Timing:

StartMon Nov 10 17:40:02 2025
EndMon Nov 10 21:19:04 2025
Elapsed3 hrs, 39 mins, 2 secs

All Changes:

:

  1. Change #248257

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 14:21:34
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision f477f3efc3ec58f7effc2aa01e7f4565b12be976

    Comments

    tests/data: support using native newlines on disk, drop `.gitattributes`
    Data files no longer depend on mixed newline styles. Before this
    patch the harness still assumed data files to use LF newlines,
    ensured by `.gitattribute` and distributing sources with LF newlines.
    
    To allow using platform native newlines (CRLF on Windows typically),
    update the test harness to support data files with any newline style
    on disk. And delete `.gitattributes`.
    
    Fix to:
    - load original data files (from test/data) so that their newline-style
      doesn't matter on the checked out source repo, meaning it works
      when its CRLF on Windows, just like any other file.
      (if a BOM slips in, it's caught by `spacecheck.pl` as binary content.)
    - do the same in `util.py` used by `smbserver.py` (for test 1451).
    - also fix `util.py` to use us-ascii encoding for data files, replacing utf-8.
    
    Also:
    - runtests: rework the stray CR checker to allow full CRLF data files,
      and keep warning for mixed newlines.
    
    Follow-up to 904e7ecb66519951681377758fe6b07dde28ce36 #19347
    
    Closes #19398

    Changed files

    • tests/data/.gitattributes
    • tests/devtest.pl
    • tests/getpart.pm
    • tests/runner.pm
    • tests/runtests.pl
    • tests/util.py
  2. Change #248258

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 14:21:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b39c158e4a2ca463bb2a2a8db8e21ed818fa185e

    Comments

    scripts: fix shellcheck SC2046 warnings
    Fix SC2046: "Quote this to prevent word splitting."
    Ref: https://www.shellcheck.net/wiki/SC2046
    
    Also:
    - shellcheck.sh: add `set -eu`.
    - shellcheck.sh, yamlcheck.sh: always run from repo root.
    - pass `--` before passing the list of files, where missing.
    - badwords.pl, cleancmd.pl: rework to accept `git ls-files` arguments.
      Requires Perl 5.22+ (2015-Jun-01) on Windows.
      Ref: https://perldoc.perl.org/functions/open
    - INTERNALS.md: require Perl 5.22 on Windows.
    - spacecheck.pl: formatting.
    - GHA/http3-linux: rework command to avoid SC2046.
    - stop suppressing SC2046 warnings.
    
    The yamlcheck.sh issue reported-by: Stanislav Fort (Aisle Research)
    Ref: 20251109163515_6eb31da3-deb2-4f4d-8327-935904f27da5
    
    Closes #19432

    Changed files

    • .github/scripts/badwords.pl
    • .github/scripts/cleancmd.pl
    • .github/scripts/codespell.sh
    • .github/scripts/shellcheck.sh
    • .github/scripts/spacecheck.pl
    • .github/scripts/yamlcheck.sh
    • .github/workflows/checkdocs.yml
    • .github/workflows/checksrc.yml
    • .github/workflows/http3-linux.yml
    • docs/INTERNALS.md
  3. Change #248259

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 14:21:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 77be4a7ab2b5a0c633b9107fd286bda1f57e4725

    Comments

    mdlinkcheck: pass curl arguments to `open()` as list
    To prevent misinterpreting quotes or other special characters.
    
    Requires Perl 5.22+ (2015-Jun-01) on Windows.
    
    Ref: https://perldoc.perl.org/functions/open
    
    Closes #19437

    Changed files

    • scripts/mdlinkcheck
  4. Change #248267

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 16:06:48
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a8e46c5ab1d9c0eda0536260c8ef0ea8fa745226

    Comments

    verify-release: update to avoid shellcheck warning SC2034
    ```
    SC2034: dl appears unused
    ```
    
    Also to shorten the code.
    
    Closes #19449

    Changed files

    • scripts/verify-release