Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / busybox / testsuite / pidof.tests
blob2a06d2b1c1f2966b9e03659a581a1e8a18701208
1 #!/bin/sh
3 # pidof tests.
4 # Copyright 2005 by Bernhard Reutner-Fischer
5 # Licensed under GPLv2, see file LICENSE in this source tree.
7 # AUDIT:
9 . ./testing.sh
11 # testing "test name" "options" "expected result" "file input" "stdin"
13 testing "pidof (exit with error)" \
14 "pidof veryunlikelyoccuringbinaryname ; echo \$?" "1\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.
19 testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" ""
21 optional FEATURE_PIDOF_SINGLE
22 testing "pidof -s" "pidof -s init" "1\n" "" ""
23 SKIP=
25 optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE
26 # This test fails now because process name matching logic has changed,
27 # but new logic is not "wrong" either... see find_pid_by_name.c comments
28 #testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
29 testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" ""
30 testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
31 SKIP=
33 exit $FAILCOUNT