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

Builder curl-threaded-solaris10-i386 Build #3752

Build In Progress:

[waiting for Lock]

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisioncdb7ac11b48ad716ee58782f48465548d753f897
Changes10 changes

BuildSlave:

unstable10x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-threaded-solaris10-i386' triggered this build

Steps and Logfiles:

  1. git  
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave
buildername curl-threaded-solaris10-i386 Builder
buildnumber 3752 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision cdb7ac11b48ad716ee58782f48465548d753f897 Build
scheduler schedule-curl-threaded-solaris10-i386 Scheduler
slavename unstable10x BuildSlave
workdir /export/home/buildbot/slave/curl-threaded-solaris10-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Viktor Szakats

Timing:

StartMon Nov 10 23:18:29 2025
Elapsed5 hrs, 43 mins, 43 secs

All Changes:

:

  1. Change #248244

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 10 Nov 2025 13:38:36
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 37050a146221194f36d26845f32e29589e15b517

    Comments

    OS400/ccsidcurl: fix curl_easy_setopt_ccsid for non-converted blobs
    When a blob option is used and it does not convert, the code would
    erroneously pass along an uninitialized stack struct.
    
    Reported-by: Stanislav Fort (Aisle Research)
    Closes #19444

    Changed files

    • packages/OS400/ccsidcurl.c
  2. Change #248245

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 10 Nov 2025 13:39:22
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7e8725502087227a615216d9c56f5aee6119223a

    Comments

    socks_sspi: use free() not FreeContextBuffer()
    The memory is allocated with malloc().
    
    This reverts commit 1d01d4975f540f3a363b38e1296aead62130fc6d.
    
    Reported-by: Stanislav Fort (Aisle Research)
    Closes #19445

    Changed files

    • lib/socks_sspi.c
  3. Change #248246

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 10 Nov 2025 13:40:13
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8e321a53df866dfb2a2d5c5fc77c9639f733f93f

    Comments

    examples/crawler: fix variable
    A variable missed in the previous rename cleanup
    
    Follow-up to 928363f28ca533d743adcb70597c3e30917
    Reported-by: Gisle Vanem
    Closes #19446

    Changed files

    • docs/examples/crawler.c
  4. 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
  5. 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
  6. 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
  7. 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
  8. Change #248288

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 18:52:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 6aab1dc2639d4fc8aaaa1190914b0491e029dace

    Comments

    scripts: use end-of-options marker in `find -exec` commands
    Closes #19450

    Changed files

    • .github/workflows/checksrc.yml
    • .github/workflows/http3-linux.yml
    • .github/workflows/macos.yml
    • .github/workflows/non-native.yml
    • .github/workflows/windows.yml
    • Makefile.am
    • appveyor.sh
    • scripts/maketgz
  9. Change #248289

    Category curl
    Changed by Viktor Szakats <commitohnoyoudont@vsz.me>
    Changed at Mon 10 Nov 2025 18:52:29
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision af5a1647afa8aaf7cafc1e87af529a4cd48cb240

    Comments

    OS400/makefile.sh: fix shellcheck warning SC2038
    Also:
    - OS400/makefile.sh: use end-of-options marker in xargs command.
    - OS400/make-tests.sh: drop warning suppression.
      Seems to not trigger anymore as of shellcheck 0.11.0
    
    Closes #19451

    Changed files

    • packages/OS400/make-tests.sh
    • packages/OS400/makefile.sh
  10. Change #248313

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

    Comments

    GHA/linux: disable test 776 in valgrind jobs to avoid delay
    Saving ~30 seconds in jobs affected.
    
    Closes #19456

    Changed files

    • .github/workflows/linux.yml