diff options
author | Jim Meyering <jim@meyering.net> | 1998-01-16 08:04:19 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-01-16 08:04:19 +0000 |
commit | 5618133eed355b6e4cfd832adbe074a573567785 (patch) | |
tree | b95e8a0501bbd24e073155f4905f05f0ef32598d /tests/head | |
parent | ade1f58e11a191bd8a9cf81b7317a3c3deb6920f (diff) | |
download | coreutils-5618133eed355b6e4cfd832adbe074a573567785.tar.xz |
(fail-0): Disable test. It depends on
sizeof(long) being 32 bits. Reported by Kaveh Ghazi.
Diffstat (limited to 'tests/head')
-rw-r--r-- | tests/head/Test.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/head/Test.pm b/tests/head/Test.pm index 2b4014cd5..aa8c58a28 100644 --- a/tests/head/Test.pm +++ b/tests/head/Test.pm @@ -31,7 +31,9 @@ my @tv = ( # This test fails for textutils-1.22, because head let 4096m overflow to 0 # and did not fail. Now head fails with a diagnostic. -['fail-0', '-n 4096m', "a\n", "", 1], + +# Disable this test because it fails on systems with 64-bit longs. +# ['fail-0', '-n 4096m', "a\n", "", 1], # In spite of its name, this test passes -- just to contrast with the above. ['fail-1', '-n 2048m', "a\n", "a\n", 0], |