From 72681aca01a108898666f8c71d655c93230c8a9a Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sat, 18 Mar 2017 19:08:38 +0100 Subject: [PATCH] Don't perform CPAN tests for IO::Scalar. #3573 --- Build.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index ad5147adb..b7df2b192 100644 --- a/Build.PL +++ b/Build.PL @@ -129,7 +129,7 @@ EOF # temporary workaround for upstream bug in test push @cmd, '--notest' - if $module =~ /^(?:OpenGL|Math::PlanePath|Test::Harness)$/; + if $module =~ /^(?:OpenGL|Math::PlanePath|Test::Harness|IO::Scalar)$/; push @cmd, "$module~$version"; my $res = system @cmd;