find:: get rid of nested function (it's a gcc-ism)
[oweals/busybox.git] / testsuite / pidof.tests
index bfde26e2c9b049da0c02c3fd998b1de35704f832..2a06d2b1c1f2966b9e03659a581a1e8a18701208 100755 (executable)
@@ -1,12 +1,12 @@
 #!/bin/sh
 
 # pidof tests.
-# Copyright 2005 by Bernhard Fischer
-# Licensed under GPL v2, see file LICENSE for details.
+# Copyright 2005 by Bernhard Reutner-Fischer
+# Licensed under GPLv2, see file LICENSE in this source tree.
 
 # AUDIT:
 
-. testing.sh
+. ./testing.sh
 
 # testing "test name" "options" "expected result" "file input" "stdin"
 
@@ -20,10 +20,14 @@ testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" ""
 
 optional FEATURE_PIDOF_SINGLE
 testing "pidof -s" "pidof -s init" "1\n" "" ""
+SKIP=
 
-optional FEATURE_PIDOF_OMIT
-testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
+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" "" ""
 testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
+SKIP=
 
 exit $FAILCOUNT