blob: 59b9fdb88b881cd89526f95ab3ce563d73a18d97 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/perl
use Test::More;
if (! -e "./test_opts2") {
plan skip_all => "./test_opts2 not compiled - please enable libtap library and/or extra-opts to test";
}
$ENV{"NAGIOS_CONFIG_PATH"} = ".";
exec "./test_opts2";
|