summaryrefslogtreecommitdiffstats
path: root/plugins/t
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/t')
-rw-r--r--plugins/t/check_disk.t14
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t
index d35d02c..385865f 100644
--- a/plugins/t/check_disk.t
+++ b/plugins/t/check_disk.t
@@ -6,7 +6,7 @@
6# 6#
7 7
8use strict; 8use strict;
9use Test::More tests => 26; 9use Test::More;
10use NPTest; 10use NPTest;
11use POSIX qw(ceil floor); 11use POSIX qw(ceil floor);
12 12
@@ -16,12 +16,14 @@ my $warningOutput = '/^DISK WARNING - /';
16 16
17my $result; 17my $result;
18 18
19my $mountpoint_valid = getTestParameter( "mountpoint_valid", "NP_MOUNTPOINT_VALID", "/", 19my $mountpoint_valid = getTestParameter( "NP_MOUNTPOINT_VALID", "Path to valid mountpoint", "/");
20 "The path to a valid mountpoint" ); 20my $mountpoint2_valid = getTestParameter( "NP_MOUNTPOINT2_VALID", "Path to another valid mountpoint. Must be different from 1st one", "/var");
21
22my $mountpoint2_valid = getTestParameter( "mountpoint2_valid", "NP_MOUNTPOINT2_VALID", "/var",
23 "The path to another valid mountpoint. Must be different from 1st one." );
24 21
22if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") {
23 plan skip_all => "Need 2 mountpoints to test";
24} else {
25 plan tests => 26;
26}
25 27
26$result = NPTest->testCmd( 28$result = NPTest->testCmd(
27 "./check_disk -w 1% -c 1% -p $mountpoint_valid -w 1% -c 1% -p $mountpoint2_valid" 29 "./check_disk -w 1% -c 1% -p $mountpoint_valid -w 1% -c 1% -p $mountpoint2_valid"