diff options
author | Denys Vlasenko | 2023-04-11 20:29:59 +0200 |
---|---|---|
committer | Denys Vlasenko | 2023-04-11 20:29:59 +0200 |
commit | 478b5ac2bcdb5014d8e6a6e8d7647b4c599cc1a7 (patch) | |
tree | f4d1752749ae697f126e02e51e0b1e2f6b8ba464 /testsuite | |
parent | cb57abb46f06f4ede8d9ccbdaac67377fdf416cf (diff) | |
download | busybox-478b5ac2bcdb5014d8e6a6e8d7647b4c599cc1a7.zip busybox-478b5ac2bcdb5014d8e6a6e8d7647b4c599cc1a7.tar.gz |
seq: fix yet another case of negative parameters not working
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/seq.tests | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/seq.tests b/testsuite/seq.tests index d414169..d0da8c1 100755 --- a/testsuite/seq.tests +++ b/testsuite/seq.tests @@ -45,5 +45,6 @@ testing "seq count by .3 with padding 2" "seq -w 03 .3 0004" "0003.0\n0003.3\n00 testing "seq from -4 count down by 2" "seq -4 -2 -8" "-4\n-6\n-8\n" "" "" testing "seq from -.0 count down by .25" "seq -.0 -.25 -.9" "-0.00\n-0.25\n-0.50\n-0.75\n" "" "" +testing "seq -s : with negative start" "seq -s : -1 1" "-1:0:1\n" "" "" exit $FAILCOUNT |