aboutsummaryrefslogtreecommitdiff
path: root/testsuite/test.tests
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/test.tests')
-rwxr-xr-xtestsuite/test.tests26
1 files changed, 26 insertions, 0 deletions
diff --git a/testsuite/test.tests b/testsuite/test.tests
new file mode 100755
index 000000000..351d35565
--- /dev/null
+++ b/testsuite/test.tests
@@ -0,0 +1,26 @@
1#!/bin/sh
2
3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details.
5
6. testing.sh
7
8# testing "test name" "options" "expected result" "file input" "stdin"
9# file input will be file called "input"
10# test can create a file "actual" instead of writing to stdout
11
12# Need to call 'busybox test', otherwise shell builtin is used
13
14testing "test ! a = b -a ! c = c: should be false" \
15 "busybox test ! a = b -a ! c = c; echo \$?" \
16 "1\n" \
17 "" \
18 "" \
19
20testing "test ! a = b -a ! c = d: should be true" \
21 "busybox test ! a = b -a ! c = d; echo \$?" \
22 "0\n" \
23 "" \
24 "" \
25
26exit $FAILCOUNT