diff options
author | Jim Meyering <jim@meyering.net> | 2003-09-05 06:56:38 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-09-05 06:56:38 +0000 |
commit | 6d913bbe43965fd8af55dcfd0227674082c15d1d (patch) | |
tree | 72cb92a01a0bf6072c01232f2f5c5ac41bced28b /tests/seq/basic | |
parent | 1ba2d9615e3cb7334a20498881bf2ef744338fd1 (diff) | |
download | coreutils-6d913bbe43965fd8af55dcfd0227674082c15d1d.tar.xz |
(onearg-2): Output should be empty.
Diffstat (limited to 'tests/seq/basic')
-rwxr-xr-x | tests/seq/basic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seq/basic b/tests/seq/basic index 1bcece00b..93b2ff03e 100755 --- a/tests/seq/basic +++ b/tests/seq/basic @@ -25,7 +25,7 @@ my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n"; my @Tests = ( ['onearg-1', qw(10), {OUT => [(1..10)]}], - ['onearg-2', qw(-1), {OUT => [qw(1 0 -1)]}], + ['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.1)]}], ['neg-3', qw(1 -1 0), {OUT => [qw(1 0)]}], |