From: Jim Meyering Date: Wed, 1 Mar 2000 12:53:37 +0000 (+0000) Subject: Describe eq-wid-2 failure conditions. X-Git-Tag: TEXTUTILS-2_0e~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=edd988b3cc16253a276cd3b7f4baaf5dc360031b;p=thirdparty%2Fcoreutils.git Describe eq-wid-2 failure conditions. --- diff --git a/tests/seq/basic b/tests/seq/basic index a8f6ba552d..8d00e1f539 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)]}], );