1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

tests: remove 'target_pointer_width = "128"'

This commit is contained in:
Daniel Hofstetter 2024-05-20 10:32:38 +02:00 committed by Ben Wiederhake
parent 64dd78d14a
commit a816960c33
10 changed files with 0 additions and 14 deletions

View file

@ -304,12 +304,10 @@ fn test_head_invalid_num() {
.stderr_is(
"head: invalid number of lines: '1024R': Value too large for defined data type\n",
);
#[cfg(not(target_pointer_width = "128"))]
new_ucmd!()
.args(&["-c", "1Y", "emptyfile.txt"])
.fails()
.stderr_is("head: invalid number of bytes: '1Y': Value too large for defined data type\n");
#[cfg(not(target_pointer_width = "128"))]
new_ucmd!()
.args(&["-n", "1Y", "emptyfile.txt"])
.fails()