summaryrefslogtreecommitdiffstats
path: root/tests
AgeCommit message (Collapse)Author
6 dayscp: fix cp throwing error when dest is symlink and options backup and --rem ↵mhead
is given
8 daysMerge pull request #6584 from howjmay/checksum-no-checkDaniel Hofstetter
hashsum: Return err when only --strict or --quiet is given
12 daysmv: use read_to_string and write when testing inter-partition copying (#6583)sreehari prasad
* mv: inter partition copying test code cleanup * mv: inter partition copying use of read_to_string and write * Update tests/by-util/test_mv.rs Co-authored-by: Ben Wiederhake <BenWiederhake.GitHub@gmx.de> --------- Co-authored-by: Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
12 dayshashsum: Return err when only --strict or --quiet is givenYang Hau
13 daystest: fix indentation that fails clippy nightlyBen Wiederhake
See also https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
13 daysclippy: simplify code according to nightly 'manual_unwrap_or_default' lintBen Wiederhake
https://rust-lang.github.io/rust-clippy/master/index.html#/manual_unwrap_or_default
13 daysclippy: simplify code according to nightly ↵Ben Wiederhake
'needless_borrows_for_generic_args' lint https://rust-lang.github.io/rust-clippy/master/index.html#/needless_borrows_for_generic_args
13 daysclippy: simplify code according to nightly 'byte_char_slices' lintBen Wiederhake
https://rust-lang.github.io/rust-clippy/master/index.html#/byte_char_slices
13 daysproper error message when inter-partition copying fails with testmhead
13 daysmv: gnu test case `to-symlink` fixmhead
13 daystr: accept non utf8 arguments for setsDorian Péron
2024-07-15uptime: relax error message due to different errno on MacOSBen Wiederhake
Fixes #6569.
2024-07-15tr: Raise error if set2 is too big on complemented classDorian Péron
2024-07-13printf: Fix extra padding (#6548)kf zheng
2024-07-10tests(date): Add tests for #6392Dorian Péron
These tests check that days and month with a single digit are correctly handled.
2024-07-09Merge pull request #6382 from BenWiederhake/dev-signal-casingSylvestre Ledru
uucore+timeout: accept signals of any casing
2024-07-09hostname: enable test test_hostname_ip for FreeBSD and OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable common::util::tests::test_altering_umask on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: fix warnings on OpenBSD for unused imports in by-util/test_*Laurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for touch on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for test on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for tail on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for stdbuf on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for stat on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for split on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for ls on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for install on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for head on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for du on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for cp on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for chown on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-06tests: disable failed tests for cat on OpenBSDLaurent Cheylus
Signed-off-by: Laurent Cheylus <foxy@free.fr>
2024-07-05Merge pull request #6528 from sylvestre/cfDaniel Hofstetter
ls: when -CF is passed, use a tab. closes: #5396
2024-07-05ls: fixed dired option (-D) not outputting datetime and parent dir byte ↵Pyokyeong Son
offsets (#6538) Closes #6522
2024-07-05Merge pull request #6535 from sylvestre/sortDaniel Hofstetter
sort: improve the error mgmt with --batch-size
2024-07-05ls: fix error sub dir output (#6521)Mengsheng Wu
Closes #6492
2024-07-04ls: when -CF is passed, use a tab. closes: #5396Sylvestre Ledru
2024-07-04sort: improve the error mgmt with --batch-sizeSylvestre Ledru
should make the gnu test tests/sort/sort-merge.pl pass
2024-07-03Merge pull request #6524 from sylvestre/cksum-3Daniel Hofstetter
cksum: read the next file when the first is missing or invalid
2024-07-03Merge pull request #6526 from Its-Just-Nans/add-test-dateSylvestre Ledru
date: add test
2024-07-03common: permit signal names of any casing in testsBen Wiederhake
2024-07-03uucore+timeout: accept signals of any casingBen Wiederhake
2024-07-02ls: add testn4n5
2024-07-02cksum: read the next file when the first is missing or invalidSylvestre Ledru
2024-07-02add date testn4n5
2024-07-01Merge pull request #6513 from cvonelm/mainSylvestre Ledru
tr: correctly detected matched [:upper:]
2024-07-01printf: Check precision before writing into stdout (#6511)kf zheng
* Add a new error type InvalidPrecision * check if the precision is valid before writing to stdout when it is signedInt, unsigned, or float * add tests for invalid precision check * add tests for invalid precision check * fix possible cross-platform issue that code failing to pass on some tests * uucore/format: inline var in format string --------- Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
2024-06-30Merge pull request #6514 from lcheylus/openbsd-uptimeSylvestre Ledru
uptime: add support for OpenBSD using utmp
2024-06-30Merge pull request #6506 from Its-Just-Nans/touch-directorySylvestre Ledru
`touch`: change message when directory
2024-06-30touch: change message when trailing slashn4n5