diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-11-12 01:31:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-12 01:31:24 (GMT) |
commit | f1e91405c3b51641b02228672c47e2b4aa1dd5f1 (patch) | |
tree | 6fc8a80d365a05066a7a4b4640acb54c2cac1fd8 /plugins/t/check_users.t | |
parent | 928654756b278531928cd7595fee737e32bf2ca3 (diff) | |
parent | 5db26484651753e3a2f0568b0b9d64aa49381533 (diff) | |
download | monitoring-plugins-f1e91405c3b51641b02228672c47e2b4aa1dd5f1.tar.gz |
Merge pull request #1958 from RincewindsHat/check_users_fix_segfault
check_users: fix segfault
Diffstat (limited to 'plugins/t/check_users.t')
-rw-r--r-- | plugins/t/check_users.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/t/check_users.t b/plugins/t/check_users.t index 9ebc2fc..21c3e53 100644 --- a/plugins/t/check_users.t +++ b/plugins/t/check_users.t | |||
@@ -13,10 +13,11 @@ use Test; | |||
13 | use NPTest; | 13 | use NPTest; |
14 | 14 | ||
15 | use vars qw($tests); | 15 | use vars qw($tests); |
16 | BEGIN {$tests = 8; plan tests => $tests} | 16 | BEGIN {$tests = 12; plan tests => $tests} |
17 | 17 | ||
18 | my $successOutput = '/^USERS OK - [0-9]+ users currently logged in/'; | 18 | my $successOutput = '/^USERS OK - [0-9]+ users currently logged in/'; |
19 | my $failureOutput = '/^USERS CRITICAL - [0-9]+ users currently logged in/'; | 19 | my $failureOutput = '/^USERS CRITICAL - [0-9]+ users currently logged in/'; |
20 | my $wrongOptionOutput = '/Usage:/'; | ||
20 | 21 | ||
21 | my $t; | 22 | my $t; |
22 | 23 | ||
@@ -24,6 +25,8 @@ $t += checkCmd( "./check_users 1000 1000", 0, $successOutput ); | |||
24 | $t += checkCmd( "./check_users 0 0", 2, $failureOutput ); | 25 | $t += checkCmd( "./check_users 0 0", 2, $failureOutput ); |
25 | $t += checkCmd( "./check_users -w 0:1000 -c 0:1000", 0, $successOutput ); | 26 | $t += checkCmd( "./check_users -w 0:1000 -c 0:1000", 0, $successOutput ); |
26 | $t += checkCmd( "./check_users -w 0:0 -c 0:0", 2, $failureOutput ); | 27 | $t += checkCmd( "./check_users -w 0:0 -c 0:0", 2, $failureOutput ); |
28 | $t += checkCmd( "./check_users -w 0:1000", 3, $wrongOptionOutput); | ||
29 | $t += checkCmd( "./check_users", 3, $wrongOptionOutput); | ||
27 | 30 | ||
28 | exit(0) if defined($Test::Harness::VERSION); | 31 | exit(0) if defined($Test::Harness::VERSION); |
29 | exit($tests - $t); | 32 | exit($tests - $t); |