7 lines
160 B
Perl
7 lines
160 B
Perl
|
#!/usr/bin/perl
|
||
|
use Test::More;
|
||
|
if (! -e "./test_cmd") {
|
||
|
plan skip_all => "./test_cmd not compiled - please install tap library to test";
|
||
|
}
|
||
|
exec "./test_cmd";
|