summaryrefslogtreecommitdiff
path: root/tests/misc/uniq
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc/uniq')
-rwxr-xr-xtests/misc/uniq9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/misc/uniq b/tests/misc/uniq
index 0350864c0..a7717448f 100755
--- a/tests/misc/uniq
+++ b/tests/misc/uniq
@@ -18,6 +18,8 @@
use strict;
+my $limits = getlimits ();
+
my $prog = 'uniq';
my $try = "Try \`$prog --help' for more information.\n";
@@ -192,10 +194,11 @@ my @Tests =
. $try}],
# Check that -d and -u suppress all output, as POSIX requires.
['120', qw(-d -u), {IN=>"a\na\n\b"}, {OUT=>""}],
- ['121', qw(-d -u -w340282366920938463463374607431768211456), {IN=>"a\na\n\b"}, {OUT=>""}],
+ ['121', "-d -u -w$limits->{'UINTMAX_OFLOW'}", {IN=>"a\na\n\b"}, {OUT=>""}],
+ ['122', "-d -u -w$limits->{'SIZE_OFLOW'}", {IN=>"a\na\n\b"}, {OUT=>""}],
# Check that --zero-terminated is synonymous with -z.
- ['122', '--zero-terminated', {IN=>"a\na\nb"}, {OUT=>"a\na\nb\0"}],
- ['123', '--zero-terminated', {IN=>"a\0a\0b"}, {OUT=>"a\0b\0"}],
+ ['123', '--zero-terminated', {IN=>"a\na\nb"}, {OUT=>"a\na\nb\0"}],
+ ['124', '--zero-terminated', {IN=>"a\0a\0b"}, {OUT=>"a\0b\0"}],
);
# Set _POSIX2_VERSION=199209 in the environment of each obs-plus* test.