summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSven Nierlein <Sven.Nierlein@consol.de>2013-09-16 11:39:47 (GMT)
committerSven Nierlein <sven@consol.de>2013-09-16 11:49:44 (GMT)
commitadc9d71b4b2c622b26e6403b16f8299a280dab54 (patch)
tree6d619241bd3dff2792b5d9785c727cc4f64f84fb /plugins
parentc001fb98ffb162d6cd148047a3737c78aa737eca (diff)
downloadmonitoring-plugins-adc9d71b4b2c622b26e6403b16f8299a280dab54.tar.gz
check_procs: fix test with sleeping processes
at least on freebsd, there are a processes with state 'S', they always use two character status.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/t/check_procs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/t/check_procs.t b/plugins/t/check_procs.t
index a1a2883..1dea564 100644
--- a/plugins/t/check_procs.t
+++ b/plugins/t/check_procs.t
@@ -34,7 +34,7 @@ $result = NPTest->testCmd( "./check_procs -w 0 -c 0" );
34is( $result->return_code, 2, "Checking critical if processes > 0" ); 34is( $result->return_code, 2, "Checking critical if processes > 0" );
35like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? | procs=[0-9]+;0;0;0;$/', "Output correct" ); 35like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? | procs=[0-9]+;0;0;0;$/', "Output correct" );
36 36
37$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s S" ); 37$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s Ss" );
38is( $result->return_code, 2, "Checking critical if sleeping processes" ); 38is( $result->return_code, 2, "Checking critical if sleeping processes" );
39like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" ); 39like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" );
40 40