blob: 0c303cf22f58fc7cdb8523957c32a110f93cef67 [file] [log] [blame]
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +00001#!/bin/sh
2
3# pidof tests.
4# Copyright 2005 by Bernhard Fischer
5# Licensed under GPL v2, see file LICENSE for details.
6
7# AUDIT:
8
9[ ${#COMMAND} -eq 0 ] && COMMAND=pidof
10. testing.sh
11
12# testing "test name" "options" "expected result" "file input" "stdin"
13
14testing "pidof (exit with error)" "veryunlikelyoccuringbinaryname ; echo \$?" \
15 "\n1\n" "" ""
16testing "pidof (exit with success)" "pidof > /dev/null; echo \$?" "0\n" "" ""
17
18
19# Depends on FEATURE_PIDOF_SINGLE
20_BB_CONFIG_DEP=FEATURE_PIDOF_SINGLE
21testing "pidof -s" "-s $(basename $0) ; echo -n \$?" \
22 "$(pidof -s $(basename $0) ; echo -n $?)" "" ""
23
24# Depends on FEATURE_PIDOF_OMIT
25_BB_CONFIG_DEP=FEATURE_PIDOF_OMIT
26testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \
27 "$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" ""
28
29exit $FAILCOUNT