X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=testsuite%2Fpidof.tests;h=bfde26e2c9b049da0c02c3fd998b1de35704f832;hb=f443bffd3c24c4b7fcbc0472c75e747e26c24fef;hp=0515522f8fe90236ed791b44a5e1631813fee3bc;hpb=48c6157eb9c10bdca89af2792177afc0380ef9c5;p=oweals%2Fbusybox.git diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests index 0515522f8..bfde26e2c 100755 --- a/testsuite/pidof.tests +++ b/testsuite/pidof.tests @@ -4,24 +4,26 @@ # Copyright 2005 by Bernhard Fischer # Licensed under GPL v2, see file LICENSE for details. -# AUDIT: +# AUDIT: -[ ${#COMMAND} -eq 0 ] && COMMAND=pidof . testing.sh # testing "test name" "options" "expected result" "file input" "stdin" -testing "pidof (exit with error)" "veryunlikelyoccuringbinaryname ; echo \$?" \ - "\n1\n" "" "" -testing "pidof (exit with success)" "pidof > /dev/null; echo \$?" "0\n" "" "" +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" "-s $(basename $0) ; echo -n \$?" \ - "$(pidof -s $(basename $0) ; echo -n $?)" "" "" +testing "pidof -s" "pidof -s init" "1\n" "" "" optional FEATURE_PIDOF_OMIT -testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \ - "$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" "" +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