summaryrefslogtreecommitdiff
path: root/tests/seq
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-03-01 12:53:37 +0000
committerJim Meyering <jim@meyering.net>2000-03-01 12:53:37 +0000
commitedd988b3cc16253a276cd3b7f4baaf5dc360031b (patch)
tree9c4a13799f92978315a989e8e2652c2aaa5b4170 /tests/seq
parent296fe5d7827b3244b77f8875d38c569c6159b096 (diff)
downloadcoreutils-edd988b3cc16253a276cd3b7f4baaf5dc360031b.tar.xz
Describe eq-wid-2 failure conditions.
Diffstat (limited to 'tests/seq')
-rwxr-xr-xtests/seq/basic3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/seq/basic b/tests/seq/basic
index a8f6ba552..8d00e1f53 100755
--- a/tests/seq/basic
+++ b/tests/seq/basic
@@ -33,6 +33,9 @@ my @Tests =
['neg-4', qw(1 -1 -1), {OUT => [qw(1 0 -1)]}],
['eq-wid-1', qw(-w 1 -1 -1), {OUT => [qw(01 00 -1)]}],
+
+ # Prior to 2.0g, this test would fail on e.g., HPUX systems
+ # because it'd end up using %3.1f as the format instead of %4.1f.
['eq-wid-2', qw(-w -.1 .1 .1),{OUT => [qw(-0.1 00.0 00.1)]}],
);