From 4aca87515a5083ae0e31ce3177189fd43b6d05ac Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sat, 3 Jan 2015 13:58:15 +0100 Subject: patch to Vanilla Tomato 1.28 --- release/src/router/busybox/testsuite/pidof.tests | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 release/src/router/busybox/testsuite/pidof.tests (limited to 'release/src/router/busybox/testsuite/pidof.tests') diff --git a/release/src/router/busybox/testsuite/pidof.tests b/release/src/router/busybox/testsuite/pidof.tests new file mode 100755 index 00000000..a05a3023 --- /dev/null +++ b/release/src/router/busybox/testsuite/pidof.tests @@ -0,0 +1,31 @@ +#!/bin/sh + +# pidof tests. +# Copyright 2005 by Bernhard Reutner-Fischer +# Licensed under GPL v2, see file LICENSE for details. + +# AUDIT: + +. testing.sh + +# testing "test name" "options" "expected result" "file input" "stdin" + +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. + +testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" "" + +optional FEATURE_PIDOF_SINGLE +testing "pidof -s" "pidof -s init" "1\n" "" "" + +optional FEATURE_PIDOF_OMIT +# 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" "" "" "" + +exit $FAILCOUNT -- cgit v1.2.3-54-g00ecf