Code

Regexps in check_snmp tests fails where they shouldn't.
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 23 Dec 2006 18:59:36 +0000 (18:59 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Sat, 23 Dec 2006 18:59:36 +0000 (18:59 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1557 f882894a-f735-0410-b71e-b25c423dba1c

plugins/t/check_snmp.t

index b45b6c0191791996f731867c727c177f10b4bc98..acd122014137866eb667d1a5fe17168ffb3d4082 100644 (file)
@@ -35,13 +35,13 @@ if ( -x "./check_snmp" )
                  { 0 => 'continue',  3 => 'skip' }, '/^SNMP OK - \d+/',                %exceptions );
 
   $t += checkCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 1:1 -c 1:1",
-                 { 0 => 'continue',  3 => 'skip' }, '/^SNMP OK - 1\s*$/',              %exceptions );
+                 { 0 => 'continue',  3 => 'skip' }, '/^SNMP OK - 1\s.*$/',             %exceptions );
 
   $t += checkCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w 0   -c 1:",
-                 { 1 => 'continue',  3 => 'skip' }, '/^SNMP WARNING - \*1\*\s*$/',     %exceptions );
+                 { 1 => 'continue',  3 => 'skip' }, '/^SNMP WARNING - \*1\*\s.*$/',    %exceptions );
 
   $t += checkCmd( "./check_snmp -H $host_snmp -C $snmp_community -o host.hrSWRun.hrSWRunTable.hrSWRunEntry.hrSWRunIndex.1 -w  :0 -c 0",
-                 { 2 => 'continue',  3 => 'skip' }, '/^SNMP CRITICAL - \*1\*\s*$/',    %exceptions );
+                 { 2 => 'continue',  3 => 'skip' }, '/^SNMP CRITICAL - \*1\*\s.*$/',   %exceptions );
 
   $t += checkCmd( "./check_snmp -H $host_nonresponsive -C $snmp_community -o system.sysUpTime.0 -w 1: -c 1:", 3, '/SNMP problem - /' );