blob: 0515522f8fe90236ed791b44a5e1631813fee3bc [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
Rob Landley48c61572005-11-07 08:50:53 +000019optional FEATURE_PIDOF_SINGLE
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000020testing "pidof -s" "-s $(basename $0) ; echo -n \$?" \
21 "$(pidof -s $(basename $0) ; echo -n $?)" "" ""
22
Rob Landley48c61572005-11-07 08:50:53 +000023optional FEATURE_PIDOF_OMIT
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000024testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \
25 "$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" ""
26
27exit $FAILCOUNT