mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-21 18:05:15 -04:00
9 lines
228 B
Perl
Executable file
9 lines
228 B
Perl
Executable file
#!/usr/bin/perl
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
if (! -e "./tests/test_check_swap") {
|
|
plan skip_all => "./test_check_swap not compiled - please enable libtap library to test";
|
|
}
|
|
system("./tests/test_check_swap");
|