From 571e8e5af47c727189798c43095fd903331bc639 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Tue, 20 Sep 2005 11:34:34 +0000 Subject: Support for Tru64 for check_procs + additional test cases git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1231 f882894a-f735-0410-b71e-b25c423dba1c --- plugins/t/check_procs.t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'plugins/t/check_procs.t') diff --git a/plugins/t/check_procs.t b/plugins/t/check_procs.t index cb5f1224..91f5c44d 100644 --- a/plugins/t/check_procs.t +++ b/plugins/t/check_procs.t @@ -10,7 +10,7 @@ use Test; use NPTest; use vars qw($tests); -BEGIN {$tests = 10; plan tests => $tests} +BEGIN {$tests = 12; plan tests => $tests} my $t; @@ -19,6 +19,7 @@ $t += checkCmd( "./check_procs -w 100000 -c 100000 -s Z", 0, '/^PROCS OK: [0-9 $t += checkCmd( "./check_procs -w 0 -c 10000000", 1, '/^PROCS WARNING: [0-9]+ process(es)?$/' ); $t += checkCmd( "./check_procs -w 0 -c 0", 2, '/^PROCS CRITICAL: [0-9]+ process(es)?$/' ); $t += checkCmd( "./check_procs -w 0 -c 0 -s S", 2, '/^PROCS CRITICAL: [0-9]+ process(es)? with /' ); +$t += checkCmd( "./check_procs -w 0 -c 10000000 -p 1", 1, "/^PROCS WARNING: [0-9]+ process(es)? with PPID = 1/' ); exit(0) if defined($Test::Harness::VERSION); exit($tests - $t); -- cgit v1.2.3