summaryrefslogtreecommitdiffstats
path: root/tests/shuf
AgeCommit message (Collapse)AuthorLines
2026-03-02tests: shuf: ensure memory exhaustion is handled gracefullyoech3-0/+5
* tests/shuf/shuf.sh: Ensure we exit 1 upon failure to allocate memory. https://github.com/uutils/coreutils/issues/11170 https://github.com/coreutils/coreutils/pull/209
2026-02-28maint: fix typo in previous testPádraig Brady-1/+1
* tests/shuf/shuf.sh: Use non varying $ret rather than $?
2026-02-28tests: shuf: ensure we handle unsupported getrandom syscall gracefullyoech3-0/+6
* tests/shuf/shuf.sh: Check we fail normally or succeed where the getrandom syscall is not available. https://github.com/coreutils/coreutils/pull/205
2026-02-26tests: shuf: ensure randomization doesn't depend solely on ASLRoech3-0/+6
* tests/shuf/shuf.sh: Use setarch --addr-no-randomize to disable ASLR, and show the output is still random. https://github.com/coreutils/coreutils/pull/198
2026-01-01maint: run 'make update-copyright'Collin Funk-2/+2
2025-01-01maint: update all copyright year number rangesPádraig Brady-2/+2
Update to latest gnulib with new copyright year. Run "make update-copyright" and then... * gnulib: Update included in this commit as copyright years are the only change from the previous gnulib commit. * tests/init.sh: Sync with gnulib to pick up copyright year. * bootstrap: Likewise. * tests/sample-test: Adjust to use the single most recent year.
2024-01-01maint: update all copyright year number rangesPádraig Brady-2/+2
Update to latest gnulib with new copyright year. Run "make update-copyright" and then... * gnulib: Update included in this commit as copyright years are the only change from the previous gnulib commit. * tests/init.sh: Sync with gnulib to pick up copyright year. * bootstrap: Manually update copyright year, until we fully sync with gnulib at a later stage. * tests/sample-test: Adjust to use the single most recent year.
2023-08-28maint: spelling fixes, including author namesPaul Eggert-1/+1
Most of this just affects commentary and documentations. The only significant behavior change is translating author names via proper_name_lite rather than proper_name_utf8, or not translating them at all. proper_name_lite is good enough for coreutils and avoids the bloat that had coreutils not using Gnulib proper_name. * bootstrap.conf (gnulib_modules): Use propername-lite instead of propername. (XGETTEXT_OPTIONS): Look for proper_name_lite instead of for proper_name_utf8. * cfg.mk (local-checks-to-skip): Remove sc_proper_name_utf8_requires_ICONV, since we no longer use proper_name_utf8. (old_NEWS_hash): Update. (sc_check-I18N-AUTHORS): Remove; no longer needed.
2023-06-19tests: move tests to a directory per utilitySylvestre Ledru-0/+251
* cfg.mk: Adjust syntax check exclusion paths. * tests/local.mk: Adjust for renamed tests.