From f278c817e584ac7ccd3bdfee3daefdbc483398b7 Mon Sep 17 00:00:00 2001 From: Ton Voon Date: Thu, 3 Nov 2005 15:04:16 +0000 Subject: Fixing some test failures git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1270 f882894a-f735-0410-b71e-b25c423dba1c --- plugins/t/check_time.t | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'plugins/t/check_time.t') diff --git a/plugins/t/check_time.t b/plugins/t/check_time.t index 05878dc2..f7fcf959 100644 --- a/plugins/t/check_time.t +++ b/plugins/t/check_time.t @@ -23,14 +23,16 @@ my $hostname_invalid = getTestParameter( "hostname_invalid", "NP_HOSTNAME_IN my $successOutput = '/^TIME OK - [0-9]+ second time difference/'; +my %exceptions = ( 3 => "No time server present?"); + my $t; # standard mode -$t += checkCmd( "./check_time -H $host_udp_time -w 999999,59 -c 999999,59 -t 60", 0, $successOutput ); -$t += checkCmd( "./check_time -H $host_udp_time -w 999999 -W 59 -c 999999 -C 59 -t 60", 0, $successOutput ); +$t += checkCmd( "./check_time -H $host_udp_time -w 999999,59 -c 999999,59 -t 60", 0, $successOutput, %exceptions ); +$t += checkCmd( "./check_time -H $host_udp_time -w 999999 -W 59 -c 999999 -C 59 -t 60", 0, $successOutput, %exceptions ); # reverse compatibility mode -$t += checkCmd( "./check_time $host_udp_time -wt 59 -ct 59 -cd 999999 -wd 999999 -to 60", 0, $successOutput ); +$t += checkCmd( "./check_time $host_udp_time -wt 59 -ct 59 -cd 999999 -wd 999999 -to 60", 0, $successOutput, %exceptions ); # failure mode $t += checkCmd( "./check_time -H $host_nonresponsive -t 1", 2 ); -- cgit v1.2.3