Code

test GNU_SOURCE and include features.h if present to clear warning about asprintf...
[nagiosplug.git] / plugins / t / check_smtp.t
1 #! /usr/bin/perl -w
3 #use strict;
4 use Cache;
5 use Test;
6 use vars qw($tests);
8 BEGIN {$tests = 3; plan tests => $tests}
10 my $null = '';
11 my $cmd;
12 my $str;
13 my $t;
15 $cmd = "./check_smtp $Cache::mailhost";
16 $str = `$cmd`;
17 $t += ok $?>>8,0;
18 print "Test was: $cmd\n" if ($?);
20 $cmd = "./check_smtp -H $Cache::mailhost -p 25 -t 1 -w 9 -c 9 -t 10 -e 220";
21 $str = `$cmd`;
22 $t += ok $?>>8,0;
23 print "Test was: $cmd\n" if ($?);
25 $cmd = "./check_smtp -H $Cache::mailhost -p 25 -wt 9 -ct 9 -to 10 -e 220";
26 $str = `$cmd`;
27 $t += ok $?>>8,0;
28 print "Test was: $cmd\n" if ($?);
30 exit(0) if defined($Test::Harness::VERSION);
31 exit($tests - $t);