diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-11-05 11:25:18 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-11-06 20:54:44 +0100 |
commit | 0f3451e11e4abb2cc297afa51d945ec78050ac4b (patch) | |
tree | c57595b83467b8c44bdf29ba172dbc941fdbe0b3 /t | |
parent | 9fdb5524ef0c3f716133b7b4b4ed2d0799b93a59 (diff) | |
download | perl-URPM-0f3451e11e4abb2cc297afa51d945ec78050ac4b.tar perl-URPM-0f3451e11e4abb2cc297afa51d945ec78050ac4b.tar.gz perl-URPM-0f3451e11e4abb2cc297afa51d945ec78050ac4b.tar.bz2 perl-URPM-0f3451e11e4abb2cc297afa51d945ec78050ac4b.tar.xz perl-URPM-0f3451e11e4abb2cc297afa51d945ec78050ac4b.zip |
skip failing tests on *BSD
Diffstat (limited to 't')
-rw-r--r-- | t/parse.t | 7 | ||||
-rw-r--r-- | t/rpmdb.t | 4 |
2 files changed, 8 insertions, 3 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'; @@ -4,8 +4,8 @@ use strict ; use warnings ; use Test::More; use URPM; -if (-e '/etc/debian_version') { - plan skip_all => "Debian/Ubuntu do not have a system wide rpmdb"; +if (-e '/etc/debian_version' || `uname -a` =~ /BSD/i) { + plan skip_all => "*BSD/Debian/Ubuntu do not have a system wide rpmdb"; } else { plan tests => 7; } |