diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 23:49:47 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-04-29 23:49:47 +0000 |
commit | 87aed84ff4adb186187b1432a1e0dae29e8fd7f0 (patch) | |
tree | 7f7f6927ff96381d975d73ee9de5e81e225293d1 /tests/misc/split-fail | |
parent | 8b4811a61b374da1f687f0b5e6119010bd2dffdb (diff) | |
download | coreutils-87aed84ff4adb186187b1432a1e0dae29e8fd7f0.tar.xz |
Don't set _POSIX2_VERSION; no longer needed.
Diffstat (limited to 'tests/misc/split-fail')
-rwxr-xr-x | tests/misc/split-fail | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/misc/split-fail b/tests/misc/split-fail index 462c780e8..79bda949b 100755 --- a/tests/misc/split-fail +++ b/tests/misc/split-fail @@ -31,10 +31,10 @@ split -C 0 in 2> /dev/null && fail=1 split -l 0 in 2> /dev/null && fail=1 # Make sure that the obsolete -N notation still works -_POSIX2_VERSION=199209 split -1 in 2> /dev/null || fail=1 +split -1 in 2> /dev/null || fail=1 # Then make sure that -0 evokes a failure. -_POSIX2_VERSION=199209 split -0 in 2> /dev/null && fail=1 +split -0 in 2> /dev/null && fail=1 # Ensure that split --lines=N and --bytes=N work for N=2^32, # assuming our host supports integers that wide. @@ -51,7 +51,7 @@ fi #split --line-bytes=$_4gb 2> /dev/null in && fail=1 # Make sure that a huge obsolete option evokes the right failure. -env -u _POSIX2_VERSION split -99999999999999999991 2> out && fail=1 +split -99999999999999999991 2> out && fail=1 # On losing systems (x86 Solaris 5.9 c89), we get a message like this: # split: line count option -9999999999... is too large |