summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-01-23 20:14:37 +0000
committerThierry Vignaud <tv@mageia.org>2012-01-23 20:14:37 +0000
commit57dfab8a3524e788545f18a98d0e3c45da3e90da (patch)
tree9e5a195e36474e569a691f448667bc5fd4a064a4
parent336a0adc99fea3ad542598b78f286943e758bc8a (diff)
downloadurpmi-57dfab8a3524e788545f18a98d0e3c45da3e90da.tar
urpmi-57dfab8a3524e788545f18a98d0e3c45da3e90da.tar.gz
urpmi-57dfab8a3524e788545f18a98d0e3c45da3e90da.tar.bz2
urpmi-57dfab8a3524e788545f18a98d0e3c45da3e90da.tar.xz
urpmi-57dfab8a3524e788545f18a98d0e3c45da3e90da.zip
do not test urpm::dudf
-rw-r--r--NEWS1
-rw-r--r--t/01compile.t4
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7dd049e5..9a4bebd7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,4 @@
+- do not test urpm::dudf
- kill a minor GC cycle
Version 6.43 - 6 January 2012
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;