summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-09-29 16:52:59 +0000
committerJim Meyering <jim@meyering.net>2006-09-29 16:52:59 +0000
commit2e328b0196116924e78c938511023b403410683e (patch)
tree7c3ba2cb1d9fae84675a952edf45882ea1791a36
parenta38becce9752e67f71e79e8c230b327869802e70 (diff)
downloadcoreutils-2e328b0196116924e78c938511023b403410683e.tar.xz
* tests/seq/basic [neg-2, eq-wid-2]: Comment out tests that
use .1 as the increment. Actual output varies too much. [eq-wid-3]: New, commented out test.
-rw-r--r--ChangeLog4
-rwxr-xr-xtests/seq/basic5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ac1cb0ee7..9973e7821 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2006-09-29 Jim Meyering <jim@meyering.net>
+ * tests/seq/basic [neg-2, eq-wid-2]: Comment out tests that
+ use .1 as the increment. Actual output varies too much.
+ [eq-wid-3]: New, commented out test.
+
* src/shuf.c (read_input): Fix an off-by-one error that
would cause an infloop for piped input of 8KB or more.
* NEWS: Mention the fix.
diff --git a/tests/seq/basic b/tests/seq/basic
index cc2a9e42c..707065268 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 .11), {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,8 @@ 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 .11),{OUT => [qw(-0.1 00.0 00.1)]}],
+ # ['eq-wid-2', qw(-w -.1 .1 .11),{OUT => [qw(-0.1 00.0 00.1)]}],
+ # ['eq-wid-3', qw(-w 1 3.0), {OUT => [qw(1 2 3)]}],
# 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)]}],