[nagiosplug] check_procs: fix test with sleeping processes
Nagios Plugin Development
nagios-plugins at users.sourceforge.net
Tue Sep 17 10:20:24 CEST 2013
Module: nagiosplug
Branch: master
Commit: adc9d71b4b2c622b26e6403b16f8299a280dab54
Author: Sven Nierlein <Sven.Nierlein at consol.de>
Committer: Sven Nierlein <sven at consol.de>
Date: Mon Sep 16 13:39:47 2013 +0200
URL: http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug/nagiosplug;a=commit;h=adc9d71
check_procs: fix test with sleeping processes
at least on freebsd, there are a processes with state 'S', they always
use two character status.
---
plugins/t/check_procs.t | 2 +-
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" );
is( $result->return_code, 2, "Checking critical if processes > 0" );
like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? | procs=[0-9]+;0;0;0;$/', "Output correct" );
-$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s S" );
+$result = NPTest->testCmd( "./check_procs -w 0 -c 0 -s Ss" );
is( $result->return_code, 2, "Checking critical if sleeping processes" );
like( $result->output, '/^PROCS CRITICAL: [0-9]+ process(es)? with /', "Output correct" );
More information about the Commits
mailing list