blob: 2a06d2b1c1f2966b9e03659a581a1e8a18701208 [file] [log] [blame]
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +00001#!/bin/sh
2
3# pidof tests.
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00004# Copyright 2005 by Bernhard Reutner-Fischer
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005# Licensed under GPLv2, see file LICENSE in this source tree.
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +00006
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00007# AUDIT:
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +00008
Mike Frysingercaa79402009-11-04 18:41:22 -05009. ./testing.sh
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000010
11# testing "test name" "options" "expected result" "file input" "stdin"
12
Rob Landley4bb1b042006-03-16 15:20:45 +000013testing "pidof (exit with error)" \
14 "pidof veryunlikelyoccuringbinaryname ; echo \$?" "1\n" "" ""
15testing "pidof (exit with success)" "pidof pidof > /dev/null; echo \$?" \
16 "0\n" "" ""
17# We can get away with this because it says #!/bin/sh up top.
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000018
Rob Landley4bb1b042006-03-16 15:20:45 +000019testing "pidof this" "pidof pidof.tests | grep -o -w $$" "$$\n" "" ""
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000020
Rob Landley48c61572005-11-07 08:50:53 +000021optional FEATURE_PIDOF_SINGLE
Rob Landley4bb1b042006-03-16 15:20:45 +000022testing "pidof -s" "pidof -s init" "1\n" "" ""
Denys Vlasenkobfa1b2e2010-05-11 03:53:57 +020023SKIP=
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000024
Denys Vlasenkobfa1b2e2010-05-11 03:53:57 +020025optional FEATURE_PIDOF_OMIT FEATURE_PIDOF_SINGLE
Denis Vlasenko6446c2d2007-11-25 04:54:13 +000026# This test fails now because process name matching logic has changed,
27# but new logic is not "wrong" either... see find_pid_by_name.c comments
28#testing "pidof -o %PPID" "pidof -o %PPID pidof.tests | grep -o -w $$" "" "" ""
Rob Landley4bb1b042006-03-16 15:20:45 +000029testing "pidof -o %PPID NOP" "pidof -o %PPID -s init" "1\n" "" ""
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000030testing "pidof -o init" "pidof -o 1 init | grep -o -w 1" "" "" ""
Denys Vlasenkobfa1b2e2010-05-11 03:53:57 +020031SKIP=
Bernhard Reutner-Fischer82338d82005-10-06 12:50:11 +000032
33exit $FAILCOUNT