Sylvestre Ledru
bbec8fea08
Merge pull request #9344 from RenjiSann/cksum-fix-base64-untagged
...
cksum: Fix GNU test cksum-base64-untagged
2025-11-21 06:43:42 +01:00
naoNao89
e0c7ef7b10
fix(stdbuf): remove unsafe unwrap() calls for proper error handling
...
- Replace get_many().unwrap() with ok_or_else() to handle missing command
- Replace next().unwrap() with pattern matching for safety
- Replace tempdir().unwrap() with map_err() to handle temp dir failures
All stdbuf internal errors now properly exit with code 125 per GNU specification:
https://www.gnu.org/s/coreutils/manual/html_node/stdbuf-invocation.html
2025-11-21 08:04:56 +07:00
Dorian Péron
b8cef3c2db
test(cksum): Implement the GNU cksum-base64-untagged.sh test
2025-11-21 00:24:29 +01:00
Chris Dryden
2a314c7ff3
fold: Adding combining character support ( #9328 )
...
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
OpenBSD / Style and Lint (push) Waiting to run
OpenBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
* Adding combining character support for fold
* add fullwidth to the spell ignore list
* addressing comments and cargo fmt fixes
* clippy fixes for test files
---------
Co-authored-by: Christopher Illarionova <drydench@amazon.com>
Co-authored-by: Sylvestre Ledru <sylvestre@debian.org>
2025-11-20 09:36:56 +01:00
Sylvestre Ledru
643a72c75d
Merge pull request #9135 from RenjiSann/cksum-reworks
...
cksum/hashsum: merge digest computation & various improvements
2025-11-20 06:18:56 +01:00
Vikram Kangotra
15d22c285e
cp: allow directory merging when destination was just created ( #9325 )
...
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
OpenBSD / Style and Lint (push) Waiting to run
OpenBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
CheckScripts / ShellScript/Check (push) Has been cancelled
CheckScripts / ShellScript/Format (push) Has been cancelled
* cp: allow directory merging when destination was just created
Previously, when copying to a destination that was created in the same
cp call, the operation would fail with "will not overwrite just-created"
for both files and directories. This change allows directories to be
merged (matching GNU cp behavior) while still preventing file
overwrites.
The fix checks if both the source and destination are directories
before allowing the merge. If either is a file, the original error
behavior is preserved to prevent accidental file overwrites.
Fixes the case where copying multiple directories to the same
destination path would incorrectly error instead of merging their
contents.
fixes : #9318
* test_cp: Update with the suggestion
Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
---------
Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2025-11-19 16:53:23 +01:00
Dorian Peron
6d6a9917ad
checksum: fix binary flag on windows, ignore test
2025-11-19 14:13:36 +01:00
Dorian Peron
8c9bb16857
test(cksum): Add tests for BLAKE2b --length sanitization
2025-11-18 11:30:14 +01:00
Vesal Joolanejad
747874911a
Enhance mode parsing to support comma-separated mode strings in install command ( #9298 )
...
* Enhance mode parsing to support comma-separated mode strings in `parse` function. Add tests for comma-separated mode handling in file and directory creation.
* Add comprehensive tests for mode parsing in `parse` function, covering numeric, symbolic, and mixed modes, as well as handling of invalid inputs and umask considerations.
---------
Co-authored-by: Sylvestre Ledru <sylvestre@debian.org>
2025-11-17 10:14:22 +01:00
Daniel Hofstetter
58ebeaf006
Merge pull request #9280 from naoNao89/fix-numfmt-test-failures
...
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Separate Builds (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
OpenBSD / Style and Lint (push) Waiting to run
OpenBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
CheckScripts / ShellScript/Check (push) Has been cancelled
CheckScripts / ShellScript/Format (push) Has been cancelled
Check uudoc Documentation Generation / Verify uudoc generates correct documentation (push) Has been cancelled
numfmt: support quetta/ronna suffixes and fix error messages
2025-11-16 17:13:48 +01:00
Daniel Hofstetter
a15ee0927b
Merge pull request #9266 from sylvestre/sort-compress
...
sort: make compression program failures non-fatal, warn and fallback to plain files
2025-11-16 15:11:47 +01:00
Daniel Hofstetter
63ee6486d0
Merge pull request #9296 from sylvestre/divan
...
move the factor divan bench into the actual directory
2025-11-16 14:05:00 +01:00
Sylvestre Ledru
58c15d4d52
Merge pull request #9254 from akretz/install_ignore_umask
...
install: ignore umask
2025-11-15 22:27:45 +01:00
Sylvestre Ledru
ecc7f14e7e
move the factor divan bench into the actual directory
2025-11-15 21:45:22 +01:00
Sylvestre Ledru
6580919238
Merge pull request #9247 from naoNao89/fix/criterion-html-reports
...
benches: Migrate factor benchmarks from Criterion to Divan
2025-11-15 20:38:34 +01:00
Sylvestre Ledru
8b499009ad
Merge pull request #9245 from cakebaker/test_ot_nt_with_non_existing_file
...
test: existing file is newer than non-existing file
2025-11-15 20:38:16 +01:00
Sylvestre Ledru
09e1aa18ab
sort: make compression program failures non-fatal, warn and fallback to plain files
...
Should fix tests/sort/sort-compress.sh
2025-11-15 20:30:41 +01:00
naoNao89
907c57396f
numfmt: add Q/R/k suffixes and fix bugs
...
- Add quetta (Q), ronna (R) suffix support (10^30, 10^27)
- Support lowercase 'k' suffix
- Fix "invalid number" vs "invalid suffix" error distinction
- Fix output duplication on formatting errors
- Add regression tests
Improves GNU test suite compatibility.
2025-11-15 01:38:48 +07:00
Daniel Hofstetter
49f82da04d
Merge pull request #9252 from sylvestre/pr-fix
...
pr: fix header formatting for custom date formats starting with '+'
2025-11-14 08:48:59 +01:00
Sylvestre Ledru
fa82066cee
pr: fix header formatting for custom date formats starting with '+'
...
Should fix tests/misc/time-style.sh
2025-11-13 21:14:44 +01:00
Daniel Hofstetter
e502d894dc
test: existing file is newer than non-existing
...
existing -nt non-existing => true
non-existing -nt existing => false
existing -ot non-existing => false
non-existing -ot existing => true
2025-11-13 16:42:59 +01:00
mattsu
4a48c9e35e
Merge pull request #9126 from mattsu2020/fold_fix
...
fix(fold): GNU fold-characters.sh test
2025-11-13 11:41:39 +01:00
Laurent Cheylus
e9ef08622d
hostname: enable test test_hostname_ip on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-13 09:42:14 +01:00
Adrian Kretz
4d71a6e2d2
test/install: add test to ignore umask
2025-11-13 00:30:30 +01:00
naoNao89
91930760ae
benches: Port factor benchmarks from Criterion to Divan
...
Replace Criterion with Divan to align with all other benchmarks in the
codebase (22 packages use Divan, only factor used Criterion).
Eliminates the html_reports warning and consolidates on a single
benchmarking framework across the project.
2025-11-13 06:14:32 +07:00
Daniel Hofstetter
d4321315f1
Merge pull request #9140 from naoNao89/fix/nl-repeated-flags-9132
...
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Has been cancelled
GnuTests / Run GNU tests (SELinux) (push) Has been cancelled
Android / Test builds (push) Has been cancelled
OpenBSD / Style and Lint (push) Has been cancelled
OpenBSD / Tests (push) Has been cancelled
Code Quality / Style/Python (push) Has been cancelled
Benchmarks / Run benchmarks (CodSpeed) (push) Has been cancelled
Code Quality / Style/format (push) Has been cancelled
Code Quality / Style/lint (push) Has been cancelled
Code Quality / Style/spelling (push) Has been cancelled
Code Quality / Style/toml (push) Has been cancelled
Code Quality / Pre-commit hooks (push) Has been cancelled
Devcontainer / Verify devcontainer (push) Has been cancelled
FreeBSD / Style and Lint (push) Has been cancelled
FreeBSD / Tests (push) Has been cancelled
WSL2 / Test (push) Has been cancelled
GnuTests / Aggregate GNU test results (push) Has been cancelled
fix(nl): allow repeated flags to match GNU nl behavior (fixes #9132 )
2025-11-12 17:04:51 +01:00
naoNao89
abcfbe407e
fix(nl): allow repeated flags to match GNU behavior
...
• Enable args_override_self(true) for repeated flags
• Remove unnecessary ArgAction::Append calls
• Fix tests to verify last value wins, not just succeeds
• Update test output validation for repeated flags
Fixes #9132
2025-11-12 21:06:25 +07:00
Daniel Hofstetter
8d81e953b2
Merge pull request #9196 from sylvestre/ci-openbsd
...
github action: add openbsd in the ci
2025-11-12 09:20:34 +01:00
Daniel Hofstetter
f264a40aa8
readlink: test calling without args
2025-11-11 17:36:17 +01:00
Sylvestre Ledru
65f24e5dab
Merge branch 'main' into ci-openbsd
2025-11-10 21:14:37 +01:00
karanabe
364d9e9dff
basenc: Fix basenc.pl GNU-compat tests pass ( #9203 )
...
* fix(basenc): align base32 decode with GNU
* Add GNU-style basenc base32 tests
* Expand basenc base32 tests and simplify failures
Adds the GNU-style auto-padding/truncated cases to
tests/by-util/test_basenc.rs and rewrites the failure assertions to use
the chained fails().stdout_*(…).stderr_is(…) style for clarity.
* Restore GNU expectations for b32h_5 and b32h_6
Updates util/build-gnu.sh to stop forcing those two basenc tests to
expect empty stdout, so the GNU suite again checks for the leaked five
bytes before failure.
* Allow base32 decoder to auto-pad truncated blocks
Introduce PadResult, trim/pad incomplete base32 chunks, emit decoded
prefixes, and still return error: invalid input in line with GNU basenc.
2025-11-10 19:13:51 +01:00
Laurent Cheylus
6130a334f2
expr: fix crash for test_long_input on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:55 +01:00
Laurent Cheylus
0fabf825e1
df: disable test_type_option_with_file on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:55 +01:00
Laurent Cheylus
b6ad527d22
cp: disable test_cp_current_directory_verbose on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:55 +01:00
Laurent Cheylus
384102cd20
du: fix warnings for tests on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:54 +01:00
Laurent Cheylus
61f9cd8267
nohup: fix warnings for tests on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:54 +01:00
Laurent Cheylus
3638d6c601
pinky: fix warnings for tests on OpenBSD
...
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-09 08:53:53 +01:00
Sylvestre Ledru
2a8a7b36e3
silent some tests for openbsd for now
2025-11-09 00:12:39 +01:00
E
9b9a913d68
Merge pull request #9153 from oech3/nognuhashsumbin
...
CICD / MinRustV (push) Waiting to run
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Separate Builds (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
WSL2 / Test (push) Waiting to run
hashsum: Remove non-GNU binaries (fix cksum interface divergence #8984 )
2025-11-08 23:55:49 +01:00
karanabe
92bb655b0c
fix(base64): allow padded chunks mid-stream
2025-11-08 22:18:19 +01:00
karanabe
690405d72f
fix(readlink): emit GNU-style Invalid argument for non-symlinks ( #9189 )
...
CICD / MinRustV (push) Waiting to run
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Separate Builds (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
Check uudoc Documentation Generation / Verify uudoc generates correct documentation (push) Has been cancelled
* fix(readlink): emit GNU-style Invalid argument for non-symlinks
* Replace format! with translate! and test skip on Windows
2025-11-08 15:09:20 +01:00
Daniel Hofstetter
700bb1c7ea
Merge pull request #9188 from sylvestre/install
...
install: fix the error message
2025-11-08 14:37:15 +01:00
Daniel Hofstetter
a3a34bbba3
Merge pull request #9181 from sylvestre/src-date
...
date: add --uct alias and allow multiple option aliases together
2025-11-08 14:17:10 +01:00
Sylvestre Ledru
30dbdf7ac7
install: fix the error message
...
should fix: tests/install/basic-1.sh
2025-11-08 10:58:46 +01:00
Cả thế giới là Rust
adcfcfaf68
fix(tsort): correct minimal cycle reporting and precise back-edge removal with iterative DFS ( #8786 )
...
CICD / Separate Builds (push) Waiting to run
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Test all features separately (push) Blocked by required conditions
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
Check uudoc Documentation Generation / Verify uudoc generates correct documentation (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
- Implement iterative DFS to prevent stack overflows (from PR #8737 )
- Fix minimal cycle reporting to show only actual cycle nodes
- Remove redundant back-edge from last cycle node to first
- Update test expectations for corrected cycle handling
2025-11-07 23:48:11 +01:00
n4n5
477b37ad06
Add example to manpage ( #7841 )
2025-11-07 23:47:32 +01:00
Sylvestre Ledru
63c936af2a
date: add --uct alias and allow multiple option aliases together
...
fix tests/misc/option-aliases.sh
2025-11-07 23:27:55 +01:00
Laurent Cheylus
ad1bac4c92
Fix build and tests for uptime on OpenBSD ( #9158 )
...
* uptime: fix build errors on OpenBSD
Signed-off-by: Laurent Cheylus <foxy@free.fr>
* tests: fix error for uptime on OpenBSD
Signed-off-by: Laurent Cheylus <foxy@free.fr>
---------
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2025-11-07 19:07:15 +01:00
Suprun
45fd3c9e93
tests/printenv: add more tests ( #9151 )
...
CICD / Build/stable (push) Blocked by required conditions
CICD / Build/nightly (push) Blocked by required conditions
CICD / Binary sizes (push) Blocked by required conditions
CICD / Build (push) Blocked by required conditions
CICD / Separate Builds (push) Waiting to run
CICD / Documentation/warnings (push) Waiting to run
CICD / MinRustV (push) Waiting to run
CICD / Dependencies (push) Waiting to run
CICD / Build/Makefile (push) Blocked by required conditions
CICD / Tests/BusyBox test suite (push) Blocked by required conditions
CICD / Tests/Toybox test suite (push) Blocked by required conditions
CICD / Code Coverage (push) Waiting to run
CICD / Build/SELinux (push) Blocked by required conditions
CICD / Build/SELinux-Stubs (Non-Linux) (push) Blocked by required conditions
CICD / Safe Traversal Security Check (push) Blocked by required conditions
GnuTests / Run GNU tests (native) (push) Waiting to run
GnuTests / Run GNU tests (SELinux) (push) Waiting to run
GnuTests / Aggregate GNU test results (push) Blocked by required conditions
Android / Test builds (push) Waiting to run
Benchmarks / Run benchmarks (CodSpeed) (push) Waiting to run
Code Quality / Style/format (push) Waiting to run
Code Quality / Style/lint (push) Waiting to run
Code Quality / Style/spelling (push) Waiting to run
Code Quality / Style/toml (push) Waiting to run
Code Quality / Style/Python (push) Waiting to run
Code Quality / Pre-commit hooks (push) Waiting to run
Devcontainer / Verify devcontainer (push) Waiting to run
FreeBSD / Style and Lint (push) Waiting to run
FreeBSD / Tests (push) Waiting to run
WSL2 / Test (push) Waiting to run
* tests/printenv: add more tests
* tests/printenv: use clearer checks in tests
2025-11-06 13:40:23 +01:00
Sylvestre Ledru
c8663b9112
printf: handle extremely large format widths gracefully to fix GNU test panic
2025-11-03 23:32:37 +01:00