diff options
author | Jim Meyering <jim@meyering.net> | 2000-03-01 12:53:37 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-03-01 12:53:37 +0000 |
commit | edd988b3cc16253a276cd3b7f4baaf5dc360031b (patch) | |
tree | 9c4a13799f92978315a989e8e2652c2aaa5b4170 /tests/seq/basic | |
parent | 296fe5d7827b3244b77f8875d38c569c6159b096 (diff) | |
download | coreutils-edd988b3cc16253a276cd3b7f4baaf5dc360031b.tar.xz |
Describe eq-wid-2 failure conditions.
Diffstat (limited to 'tests/seq/basic')
-rwxr-xr-x | tests/seq/basic | 3 |
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)]}], ); |