2005-10-06 20:50:11 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# pidof tests.
|
2008-09-25 20:13:34 +08:00
|
|
|
# Copyright 2005 by Bernhard Reutner-Fischer
|
2010-08-17 02:14:46 +08:00
|
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
2005-10-06 20:50:11 +08:00
|
|
|
|
2006-09-18 00:28:10 +08:00
|
|
|
# AUDIT:
|
2005-10-06 20:50:11 +08:00
|
|
|
|
2009-11-05 07:41:22 +08:00
|
|
|
. ./testing.sh
|
2005-10-06 20:50:11 +08:00
|
|
|
|
|
|
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
|
|
|
|
2006-03-16 23:20:45 +08:00
|
|
|
testing "pidof (exit with error)" \
|
|
|
|
"pidof veryunlikelyoccuringbinaryname ; echo \$?" "1\n" "" ""
|
|
|
|
testing "pidof (exit with success)" "pidof pidof > /dev/null; echo \$?" \
|
|
|
|
"0\n" "" ""
|
|
|
|
# We can get away with this because it says #!/bin/sh up top.
|
2005-10-06 20:50:11 +08:00
|
|
|
|
2006-03-16 23:20:45 +08:00
|
|
|
testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" ""
|
2005-10-06 20:50:11 +08:00
|
|
|
|
2018-06-27 20:26:21 +08:00
|
|
|
test x"`cat /proc/1/comm`" = x"init" && {
|
2005-11-07 16:50:53 +08:00
|
|
|
optional FEATURE_PIDOF_SINGLE
|
2006-03-16 23:20:45 +08:00
|
|
|
testing "pidof -s" "pidof -s init" "1\n" "" ""
|
2010-05-11 09:53:57 +08:00
|
|
|
SKIP=
|
2018-06-27 20:26:21 +08:00
|
|
|
}
|
2005-10-06 20:50:11 +08:00
|
|
|
|
2018-06-27 20:50:00 +08:00
|
|
|
test x"`cat /proc/1/comm`" = x"init" && {
|
2010-05-11 09:53:57 +08:00
|
|
|
optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE
|
2007-11-25 12:54:13 +08:00
|
|
|
# This test fails now because process name matching logic has changed,
|
|
|
|
# but new logic is not "wrong" either... see find_pid_by_name.c comments
|
|
|
|
#testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
|
2006-03-16 23:20:45 +08:00
|
|
|
testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" ""
|
2018-06-27 20:50:00 +08:00
|
|
|
SKIP=
|
|
|
|
}
|
|
|
|
|
|
|
|
optional FEATURE_PIDOF_OMIT
|
2006-09-18 00:28:10 +08:00
|
|
|
testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
|
2010-05-11 09:53:57 +08:00
|
|
|
SKIP=
|
2005-10-06 20:50:11 +08:00
|
|
|
|
|
|
|
exit $FAILCOUNT
|