diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-17 00:59:26 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-07-17 00:59:26 +0200 |
commit | d23f64eba79a702c36d8d8cec23b49c320897138 (patch) | |
tree | b998ad8732c6ceec17dbaf59fe7bd0539b3f2f68 /testsuite | |
parent | fff73641e473763ba47c84f5c04eb0fc0da6d64b (diff) | |
download | busybox-w32-d23f64eba79a702c36d8d8cec23b49c320897138.tar.gz busybox-w32-d23f64eba79a702c36d8d8cec23b49c320897138.tar.bz2 busybox-w32-d23f64eba79a702c36d8d8cec23b49c320897138.zip |
test: fix "test !" and "test abc -a !". closes bug 465
function old new delta
nexpr 826 840 +14
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/test.tests | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/test.tests b/testsuite/test.tests index d4be949ec..b7c84d9b2 100755 --- a/testsuite/test.tests +++ b/testsuite/test.tests | |||
@@ -21,6 +21,11 @@ testing "test '': should be false (1)" \ | |||
21 | "1\n" \ | 21 | "1\n" \ |
22 | "" "" | 22 | "" "" |
23 | 23 | ||
24 | testing "test !: should be true (0)" \ | ||
25 | "busybox test !; echo \$?" \ | ||
26 | "0\n" \ | ||
27 | "" "" | ||
28 | |||
24 | testing "test a: should be true (0)" \ | 29 | testing "test a: should be true (0)" \ |
25 | "busybox test a; echo \$?" \ | 30 | "busybox test a; echo \$?" \ |
26 | "0\n" \ | 31 | "0\n" \ |
@@ -51,6 +56,11 @@ testing "test -lt = -gt: should be false (1)" \ | |||
51 | "1\n" \ | 56 | "1\n" \ |
52 | "" "" | 57 | "" "" |
53 | 58 | ||
59 | testing "test a -a !: should be true (0)" \ | ||
60 | "busybox test a -a !; echo \$?" \ | ||
61 | "0\n" \ | ||
62 | "" "" | ||
63 | |||
54 | testing "test -f = a -o b: should be true (0)" \ | 64 | testing "test -f = a -o b: should be true (0)" \ |
55 | "busybox test -f = a -o b; echo \$?" \ | 65 | "busybox test -f = a -o b; echo \$?" \ |
56 | "0\n" \ | 66 | "0\n" \ |