summaryrefslogtreecommitdiffstats
path: root/plugins/t/check_load.t
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/t/check_load.t')
-rw-r--r--plugins/t/check_load.t8
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;
11my $str; 11my $str;
12my $t; 12my $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;
17print "Test was: $cmd\n" if ($?); 17print "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;
23print "Test was: $cmd\n" unless ($?); 23print "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
26exit(0) if defined($Test::Harness::VERSION); 26exit(0) if defined($Test::Harness::VERSION);
27exit($tests - $t); 27exit($tests - $t);