summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2007-11-01 12:10:06 +0100
committerJim Meyering <meyering@redhat.com>2007-11-01 12:10:06 +0100
commitd1986f81d0a82b9f5a73a89699ff94559bb7ca16 (patch)
treea1b04e7a1d3d82e7eb7f2077ce988b37542caf62 /tests
parent094e533fadd92aa9c488d5c3ad8de11036798126 (diff)
downloadcoreutils-d1986f81d0a82b9f5a73a89699ff94559bb7ca16.tar.xz
Adjust a seq subtest not to depend on the vagaries of floating point.
* tests/misc/seq (float-3): Use 10.94 as the endpoint, not 10.95, since 10.95 was precisely in the middle of the interval, and with a %.1f format could map to either 10.9 or 11.0. Reported by Mike Frysinger
Diffstat (limited to 'tests')
-rwxr-xr-xtests/misc/seq2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/seq b/tests/misc/seq
index 8da4335dd..1f3ec06c1 100755
--- a/tests/misc/seq
+++ b/tests/misc/seq
@@ -47,7 +47,7 @@ my @Tests =
['float-1', qw(0.8 0.1 0.9), {OUT => [qw(0.8 0.9)]}],
['float-2', qw(0.1 0.99 1.99), {OUT => [qw(0.10 1.09)]}],
- ['float-3', qw(10.8 0.1 10.95), {OUT => [qw(10.8 10.9)]}],
+ ['float-3', qw(10.8 0.1 10.94), {OUT => [qw(10.8 10.9)]}],
['float-4', qw(0.1 -0.1 -0.2), {OUT => [qw(0.1 0.0 -0.1 -0.2)]},
{OUT_SUBST => 's,^-0\.0$,0.0,'},
],