diff options
author | Denys Vlasenko | 2018-06-27 14:50:00 +0200 |
---|---|---|
committer | Denys Vlasenko | 2018-06-27 14:50:00 +0200 |
commit | 4c58f246d400d59d21eb98e8d6b334e0447ebaaa (patch) | |
tree | 4dc1514e61576a755fa3ff2c05dbd984e3e5be59 /testsuite | |
parent | 39043ad25eda79e315da5148e239730ee1d8d6ca (diff) | |
download | busybox-4c58f246d400d59d21eb98e8d6b334e0447ebaaa.zip busybox-4c58f246d400d59d21eb98e8d6b334e0447ebaaa.tar.gz |
testsuite/pidof.tests: fix false positive take 2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/pidof.tests | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests index b360a12..cd10de4 100755 --- a/testsuite/pidof.tests +++ b/testsuite/pidof.tests @@ -24,11 +24,16 @@ testing "pidof -s" "pidof -s init" "1\n" "" "" SKIP= } +test x"`cat /proc/1/comm`" = x"init" && { optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE # 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 $$" "" "" "" testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" "" +SKIP= +} + +optional FEATURE_PIDOF_OMIT testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" "" SKIP= |