summaryrefslogtreecommitdiff
path: root/tests/seq
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-09-24 10:06:29 +0000
committerJim Meyering <jim@meyering.net>2005-09-24 10:06:29 +0000
commit78e2e5d5a5ba6861fbc941effd2744299bb40ab4 (patch)
treecfac8becac18f5873f7f86137b3fb2ddc44223a5 /tests/seq
parente122fe5ae93a649f00d2f79d4bfebea7aa3d949c (diff)
downloadcoreutils-78e2e5d5a5ba6861fbc941effd2744299bb40ab4.tar.xz
(eq-wid-1, eq-wid-2): Disable these tests for now.
They fail with non-gcc compilers and some combinations of options and libraries on Solaris systems.
Diffstat (limited to 'tests/seq')
-rwxr-xr-xtests/seq/basic7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/seq/basic b/tests/seq/basic
index 5713e4b85..c83d6f598 100755
--- a/tests/seq/basic
+++ b/tests/seq/basic
@@ -31,11 +31,14 @@ my @Tests =
['neg-3', qw(1 -1 0), {OUT => [qw(1 0)]}],
['neg-4', qw(1 -1 -1), {OUT => [qw(1 0 -1)]}],
- ['eq-wid-1', qw(-w 1 -1 -1), {OUT => [qw(01 00 -1)]}],
+ # Disable these equal-width tests for now.
+ # They fail with non-gcc compilers and some combinations
+ # of options and libraries on Solaris systems.
+ # ['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)]}],
+ # ['eq-wid-2', qw(-w -.1 .1 .1),{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)]}],