diff options
author | Rob Landley <rob@landley.net> | 2006-03-16 15:20:45 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-16 15:20:45 +0000 |
commit | 4bb1b04fd1d7d6fe410e1af14816d11da456aac5 (patch) | |
tree | 601a54598057fc267def41fce1acecfb8e5a2845 /testsuite/pidof.tests | |
parent | ea9a471acd94f604f360ea16df5896e795361ac7 (diff) | |
download | busybox-w32-4bb1b04fd1d7d6fe410e1af14816d11da456aac5.tar.gz busybox-w32-4bb1b04fd1d7d6fe410e1af14816d11da456aac5.tar.bz2 busybox-w32-4bb1b04fd1d7d6fe410e1af14816d11da456aac5.zip |
Redo test suite to be able to test more than one command at a time. Eliminate
$COMMAND environment variable, instead put full command line (including
command to run) in second argument. Modify $PATH to have test versions of
commands at start of path. (Also more infrastructure for testing as root,
work in progress...)
Diffstat (limited to 'testsuite/pidof.tests')
-rwxr-xr-x | testsuite/pidof.tests | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests index 0515522f8..831dd2483 100755 --- a/testsuite/pidof.tests +++ b/testsuite/pidof.tests | |||
@@ -6,22 +6,24 @@ | |||
6 | 6 | ||
7 | # AUDIT: | 7 | # AUDIT: |
8 | 8 | ||
9 | [ ${#COMMAND} -eq 0 ] && COMMAND=pidof | ||
10 | . testing.sh | 9 | . testing.sh |
11 | 10 | ||
12 | # testing "test name" "options" "expected result" "file input" "stdin" | 11 | # testing "test name" "options" "expected result" "file input" "stdin" |
13 | 12 | ||
14 | testing "pidof (exit with error)" "veryunlikelyoccuringbinaryname ; echo \$?" \ | 13 | testing "pidof (exit with error)" \ |
15 | "\n1\n" "" "" | 14 | "pidof veryunlikelyoccuringbinaryname ; echo \$?" "1\n" "" "" |
16 | testing "pidof (exit with success)" "pidof > /dev/null; echo \$?" "0\n" "" "" | 15 | testing "pidof (exit with success)" "pidof pidof > /dev/null; echo \$?" \ |
16 | "0\n" "" "" | ||
17 | # We can get away with this because it says #!/bin/sh up top. | ||
17 | 18 | ||
19 | testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" "" | ||
18 | 20 | ||
19 | optional FEATURE_PIDOF_SINGLE | 21 | optional FEATURE_PIDOF_SINGLE |
20 | testing "pidof -s" "-s $(basename $0) ; echo -n \$?" \ | 22 | testing "pidof -s" "pidof -s init" "1\n" "" "" |
21 | "$(pidof -s $(basename $0) ; echo -n $?)" "" "" | ||
22 | 23 | ||
23 | optional FEATURE_PIDOF_OMIT | 24 | optional FEATURE_PIDOF_OMIT |
24 | testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \ | 25 | testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" "" |
25 | "$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" "" | 26 | testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" "" |
27 | testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" "" | ||
26 | 28 | ||
27 | exit $FAILCOUNT | 29 | exit $FAILCOUNT |