diff options
author | Sven Nierlein <Sven.Nierlein@consol.de> | 2014-07-31 17:06:32 +0200 |
---|---|---|
committer | Sven Nierlein <Sven.Nierlein@consol.de> | 2014-07-31 21:07:18 +0200 |
commit | a5b6d94fc6daa1868745441f6fed8f7576f2e5dd (patch) | |
tree | 9ce424b0ba1237cc9f10c7c086c3ff34ba0179de /plugins/tests | |
parent | 8e8d2d42433a97a6b5a09b01cdd4cfbfc5807cbe (diff) | |
download | monitoring-plugins-a5b6d94fc6daa1868745441f6fed8f7576f2e5dd.tar.gz |
tests: skip extented snmp tests if snmpd has no perl support
solaris snmpd has no perl support by default, so this test will fail.
Signed-off-by: Sven Nierlein <Sven.Nierlein@consol.de>
Diffstat (limited to 'plugins/tests')
-rwxr-xr-x | plugins/tests/check_snmp.t | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/tests/check_snmp.t b/plugins/tests/check_snmp.t index aace9bcc..2fd033d2 100755 --- a/plugins/tests/check_snmp.t +++ b/plugins/tests/check_snmp.t @@ -20,7 +20,16 @@ if ($@) { plan skip_all => "Missing required module for test: $@"; } else { if (-x "./check_snmp") { - plan tests => $tests; + # check if snmpd has perl support + my $test = `snmpd -c tests/conf/snmpd.conf -C -r -H 2>&1`; + if(!defined $test) { + plan skip_all => "snmpd required"; + } + elsif($test =~ m/Warning: Unknown token: perl/) { + plan skip_all => "snmpd has no perl support"; + } else { + plan tests => $tests; + } } else { plan skip_all => "No check_snmp compiled"; } |