From be1f35c51619a9ab4baf61862dd5083652f68257 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sat, 20 Jun 2015 15:56:54 +0200 Subject: [PATCH] Disable testing of modules that have known broken tests --- Build.PL | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index e637ebf31..0c6b011d3 100644 --- a/Build.PL +++ b/Build.PL @@ -118,7 +118,11 @@ EOF foreach my $module (sort keys %modules) { my $version = $modules{$module}; my @cmd = ($cpanm, @cpanm_args); - push @cmd, '--notest', if $module eq 'OpenGL'; # temporary workaround for upstream bug in test + + # temporary workaround for upstream bug in test + push @cmd, '--notest' + if $module =~ /^(?:OpenGL|Math::PlanePath|Test::Harness)$/; + push @cmd, "$module~$version"; if ($module eq 'XML::SAX::ExpatXS' && $^O eq 'MSWin32') { my $mingw = 'C:\dev\CitrusPerl\mingw64';