summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-01 00:06:22 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-01 00:06:22 +0000
commit527c63512336bd6c0fe1be69c261d97b79edc585 (patch)
tree5bde8772145e2fbaa0e68ae4c82e1edeb2fb1a90
parentbc32c05fcc98ae980cb673c60e4e342ffc4f811d (diff)
downloadurpmi-527c63512336bd6c0fe1be69c261d97b79edc585.tar
urpmi-527c63512336bd6c0fe1be69c261d97b79edc585.tar.gz
urpmi-527c63512336bd6c0fe1be69c261d97b79edc585.tar.bz2
urpmi-527c63512336bd6c0fe1be69c261d97b79edc585.tar.xz
urpmi-527c63512336bd6c0fe1be69c261d97b79edc585.zip
do not test urpm::dudf
-rw-r--r--NEWS2
-rw-r--r--t/01compile.t4
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 8c693444..6e49ce58 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- do not test urpm::dudf
+
Version 6.40 - 07 May 2010
- compress sources with xz instead of bzip2
diff --git a/t/01compile.t b/t/01compile.t
index d4c65cb1..e1b859c7 100644
--- a/t/01compile.t
+++ b/t/01compile.t
@@ -2,9 +2,9 @@
use strict;
use warnings;
-use Test::More tests => 27;
+use Test::More tests => 26;
-for my $module (glob("urpm/*.pm")) {
+for my $module (grep { !/dudf/ } glob("urpm/*.pm")) {
$module =~ s,/,::,g;
$module =~ s,\.pm$,,;
use_ok $module;