summaryrefslogtreecommitdiff
path: root/cpan/Scalar-List-Utils
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2016-12-23 21:29:15 -0700
committerKarl Williamson <khw@cpan.org>2016-12-23 21:50:03 -0700
commit71a0317b30064fe6979f8616f6d11553b35de971 (patch)
tree1f67d86c56f8817cdee46c6a431714cf4978a32e /cpan/Scalar-List-Utils
parentc98722a4bc9b76702c5bb78294595f4274ea64f2 (diff)
downloadperl-71a0317b30064fe6979f8616f6d11553b35de971.tar.gz
Scalar::List-Utils/t/tainted.t: Skip failing tests
These randomly fail, often enough to cause most smokes to not show pass, hence there is continual work involved in looking at smoke summaries and seeing everything failing, and having to do further investigation on each one to know if the failure is because of this bug, or something else. The fix for this has been delayed, so I'm creating a temporary skip. This will start failing again, unless fixed, at the next 5.25 dot release. I'm not getting any failures about having customized this cpan module, though I've tried several different configurations to do so. I fear that when pushed, these will start appearing, but then it can be easily remedied.
Diffstat (limited to 'cpan/Scalar-List-Utils')
-rw-r--r--cpan/Scalar-List-Utils/t/tainted.t3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpan/Scalar-List-Utils/t/tainted.t b/cpan/Scalar-List-Utils/t/tainted.t
index e483dfd06c..9e0df5eaaf 100644
--- a/cpan/Scalar-List-Utils/t/tainted.t
+++ b/cpan/Scalar-List-Utils/t/tainted.t
@@ -15,10 +15,13 @@ ok( !tainted($var), 'known variable');
my $key = (grep { !/^PERL/ } keys %ENV)[0];
+SKIP: { # Skip these to get blead to pass, but the skip expires soon
+skip 'is randomly failing', 2 unless $] gt 5.025009;
ok( tainted($ENV{$key}), 'environment variable');
$var = $ENV{$key};
ok( tainted($var), 'copy of environment variable');
+}
{
package Tainted;