diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | t/rpmdb.t | 7 |
2 files changed, 7 insertions, 1 deletions
@@ -9,6 +9,7 @@ o add cflags reported by pkgconfig (needed for eg: FreeBSD where rpm is installed under /usr/local) o advertize the proper pkg for most distros + o skip all rpmdb tests on Debian/Ubutun Version 5.15 - 3 October 2017 @@ -2,8 +2,13 @@ use strict ; use warnings ; -use Test::More tests => 7; +use Test::More; use URPM; +if (-e '/etc/debian_version') { + plan skip_all => "Debian/Ubuntu do not have a system wide rpmdb"; +} else { + plan tests => 7; +} my ($count, @all_pkgs_extern, @all_pkgs); my ($pkg_perl, $count_perl, $pkg_perl_extern); |