diff options
Diffstat (limited to 'plugins/t')
-rw-r--r-- | plugins/t/check_load.t | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/t/check_load.t b/plugins/t/check_load.t index ac14620..fce168f 100644 --- a/plugins/t/check_load.t +++ b/plugins/t/check_load.t | |||
@@ -11,17 +11,17 @@ my $cmd; | |||
11 | my $str; | 11 | my $str; |
12 | my $t; | 12 | my $t; |
13 | 13 | ||
14 | $cmd = "./check_load 100 100 100 100 100 100"; | 14 | $cmd = "./check_load -w 100,100,100 -c 100,100,100"; |
15 | $str = `$cmd`; | 15 | $str = `$cmd`; |
16 | $t += ok $?>>8,0; | 16 | $t += ok $?>>8,0; |
17 | print "Test was: $cmd\n" if ($?); | 17 | print "Test was: $cmd\n" if ($?); |
18 | $t += ok $str, '/^load average: +[\.0-9]+, +[\.0-9]+, +[\.0-9]+$/'; | 18 | $t += ok $str, '/^OK - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+$/'; |
19 | 19 | ||
20 | $cmd = "./check_load 0 0 0 0 0 0"; | 20 | $cmd = "./check_load -w 0,0,0 -c 0,0,0"; |
21 | $str = `$cmd`; | 21 | $str = `$cmd`; |
22 | $t += ok $?>>8,2; | 22 | $t += ok $?>>8,2; |
23 | print "Test was: $cmd\n" unless ($?); | 23 | print "Test was: $cmd\n" unless ($?); |
24 | $t += ok $str, '/^load average: +[\.0-9]+, +[\.0-9]+, +[\.0-9]+ CRITICAL$/'; | 24 | $t += ok $str, '/^CRITICAL - load average: [0-9]\.?[0-9]+, [0-9]\.?[0-9]+, [0-9]\.?[0-9]+$/'; |
25 | 25 | ||
26 | exit(0) if defined($Test::Harness::VERSION); | 26 | exit(0) if defined($Test::Harness::VERSION); |
27 | exit($tests - $t); | 27 | exit($tests - $t); |