diff options
Diffstat (limited to 'testsuite/test.tests')
-rwxr-xr-x | testsuite/test.tests | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/test.tests b/testsuite/test.tests index 2c92e34ba..1c2edaf62 100755 --- a/testsuite/test.tests +++ b/testsuite/test.tests | |||
@@ -76,4 +76,24 @@ testing "test ! a = b -a ! c = d: should be true (0)" \ | |||
76 | "0\n" \ | 76 | "0\n" \ |
77 | "" "" | 77 | "" "" |
78 | 78 | ||
79 | testing "test '!' = '!': should be true (0)" \ | ||
80 | "busybox test '!' = '!'; echo \$?" \ | ||
81 | "0\n" \ | ||
82 | "" "" | ||
83 | |||
84 | testing "test '(' = '(': should be true (0)" \ | ||
85 | "busybox test '(' = '('; echo \$?" \ | ||
86 | "0\n" \ | ||
87 | "" "" | ||
88 | |||
89 | testing "test '!' '!' = '!': should be false (1)" \ | ||
90 | "busybox test '!' '!' = '!'; echo \$?" \ | ||
91 | "1\n" \ | ||
92 | "" "" | ||
93 | |||
94 | testing "test '!' '(' = '(': should be false (1)" \ | ||
95 | "busybox test '!' '(' = '('; echo \$?" \ | ||
96 | "1\n" \ | ||
97 | "" "" | ||
98 | |||
79 | exit $FAILCOUNT | 99 | exit $FAILCOUNT |