summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-09-29 11:30:48 +0000
committerJim Meyering <jim@meyering.net>2006-09-29 11:30:48 +0000
commitaf46184a80169c95bd0f8115a758d293836aa444 (patch)
tree00aafa177323e94e71c51b7e988d586bf08bd265
parenta4d470409f5590b95d33ab67e5866ab71e4f0e27 (diff)
downloadcoreutils-af46184a80169c95bd0f8115a758d293836aa444.tar.xz
* tests/seq/basic: Use .11 as the upper bound, in case the ".1"
increment translates to a slightly larger value. This corrects a test failure on FreeBSD 6.1 reported by Nelson Beebe. The final expected value wasn't being printed.
-rw-r--r--ChangeLog5
-rwxr-xr-xtests/seq/basic4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 7a79e0bc6..1dc726e19 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2006-09-29 Jim Meyering <jim@meyering.net>
+ * tests/seq/basic: Use .11 as the upper bound, in case the ".1"
+ increment translates to a slightly larger value.
+ This corrects a test failure on FreeBSD 6.1 reported by Nelson Beebe.
+ The final expected value wasn't being printed.
+
Work around a readdir bug in Darwin 7.9.0 (MacOS X 10.3.9) on HFS+
and NFS, whereby rm would not remove all files in a directory.
* src/remove.c (CONSECUTIVE_READDIR_UNLINK_THRESHOLD): Reduce to 10.
diff --git a/tests/seq/basic b/tests/seq/basic
index bca9f5258..cc2a9e42c 100755
--- a/tests/seq/basic
+++ b/tests/seq/basic
@@ -45,7 +45,7 @@ my @Tests =
['onearg-1', qw(10), {OUT => [(1..10)]}],
['onearg-2', qw(-1)],
['neg-1', qw(-10 10 10), {OUT => [qw(-10 0 10)]}],
- ['neg-2', qw(-.1 .1 .1), {OUT => [qw(-0.1 0.0 0.1)]}],
+ ['neg-2', qw(-.1 .1 .11), {OUT => [qw(-0.1 0.0 0.1)]}],
['neg-3', qw(1 -1 0), {OUT => [qw(1 0)]}],
['neg-4', qw(1 -1 -1), {OUT => [qw(1 0 -1)]}],
@@ -53,7 +53,7 @@ my @Tests =
# 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)]}],
+ ['eq-wid-2', qw(-w -.1 .1 .11),{OUT => [qw(-0.1 00.0 00.1)]}],
# Prior to coreutils-4.5.11, some of these were not accepted.
['fmt-1', qw(-f %2.1f 1.5 .5 2),{OUT => [qw(1.5 2.0)]}],