Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2015-06-20 16:56:54 +0300
committerAlessandro Ranellucci <aar@cpan.org>2015-06-20 16:56:54 +0300
commitbe1f35c51619a9ab4baf61862dd5083652f68257 (patch)
tree1cd54dd42c27fdde35f79e8f7608bdda30920383 /Build.PL
parent4a39665804905df9de466130191c0d59902a8400 (diff)
Disable testing of modules that have known broken tests
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL6
1 files changed, 5 insertions, 1 deletions
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';