diff options
author | Sven Nierlein <sven@nierlein.de> | 2016-11-07 22:46:06 +0100 |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2016-11-07 22:46:06 +0100 |
commit | 948db2e3a2f97eaed7fbd268f2cdd2c6beb0288b (patch) | |
tree | d8a6e9f0e0d0ac78fe4558173fd55d7d6ee4dcb1 /plugins/t | |
parent | 2f2b2f1987d63cb4b31b2ef4c95cf8c8ab1d83c6 (diff) | |
download | monitoring-plugins-948db2e3a2f97eaed7fbd268f2cdd2c6beb0288b.tar.gz |
tests: adjust check_http to new output format
Signed-off-by: Sven Nierlein <sven@nierlein.de>
Diffstat (limited to 'plugins/t')
-rw-r--r-- | plugins/t/check_http.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/t/check_http.t b/plugins/t/check_http.t index 2b906e30..f514ca6f 100644 --- a/plugins/t/check_http.t +++ b/plugins/t/check_http.t @@ -121,9 +121,9 @@ SKIP: { $res = NPTest->testCmd("LC_TIME=C TZ=UTC ./check_http -C 1 www.verisign.com"); like($res->output, qr/OK - Certificate 'www.verisign.com' will expire on/, "Catch cert output"); is( $res->return_code, 0, "Catch cert output exit code" ); - my($mon,$day,$hour,$min,$sec,$year) = ($res->output =~ /(\w+)\s+(\d+)\s+(\d+):(\d+):(\d+)\s+(\d+)\./); + my($mon,$day,$hour,$min,$sec,$year) = ($res->output =~ /(\w+)\s+(\d+)\s+(\d+):(\d+):(\d+)\s+(\d+)/); if(!defined $year) { - die("parsing date failed from: ".$res); + die("parsing date failed from: ".$res->output); } my $months = {'Jan' => 0, 'Feb' => 1, 'Mar' => 2, 'Apr' => 3, 'May' => 4, 'Jun' => 5, 'Jul' => 6, 'Aug' => 7, 'Sep' => 8, 'Oct' => 9, 'Nov' => 10, 'Dec' => 11}; my $ts = mktime($sec, $min, $hour, $day, $months->{$mon}, $year-1900); |