From: Denys Vlasenko Date: Wed, 27 Jun 2018 12:26:21 +0000 (+0200) Subject: testsuite/pidof.tests: fix false positive X-Git-Tag: 1_29_0~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=33eae2871072dc078585d7d9b03b1600b5457a5f;p=oweals%2Fbusybox.git testsuite/pidof.tests: fix false positive Signed-off-by: Denys Vlasenko --- diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests index 2a06d2b1c..b360a127b 100755 --- a/testsuite/pidof.tests +++ b/testsuite/pidof.tests @@ -18,9 +18,11 @@ testing "pidof (exit with success)" "pidof pidof > /dev/null; echo \$?" \ testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" "" +test x"`cat /proc/1/comm`" = x"init" && { optional FEATURE_PIDOF_SINGLE testing "pidof -s" "pidof -s init" "1\n" "" "" SKIP= +} optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE # This test fails now because process name matching logic has changed,