diff options
Diffstat (limited to 't/parse.t')
-rw-r--r-- | t/parse.t | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -3,10 +3,15 @@ use strict; use warnings; -use Test::More tests => 41; +use Test::More; use MDV::Packdrakeng; use URPM; use URPM::Build; +if (`uname -a` =~ /BSD/i) { + plan skip_all => "*BSD fails those"; +} else { + plan tests => 41; +} chdir 't' if -d 't'; |