From 92732969690802e900e3c40fcc6fd9fa0487fbe3 Mon Sep 17 00:00:00 2001 From: Chase Whitener Date: Thu, 12 Sep 2019 20:34:03 -0400 Subject: [PATCH] Stop testing with Taint mode. Taint is terrible. --- Changes | 3 ++- META.json | 4 ++-- t/tainted.t | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 4e5aec9..cb0f828 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,8 @@ Revision history File::Slurp 9999.28 2019-04-05 - - + - Stop testing with Taint mode. Taint was a terrible practice that should + have never ever ever been a thing. 9999.27 2019-04-05 - Update the documentation on the atomic write. We no longer use the pid diff --git a/META.json b/META.json index 68a36f9..2c46e3c 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Uri Guttman " ], "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.36, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -83,5 +83,5 @@ "Graham Knop ", "James E Keenan " ], - "x_serialization_backend" : "JSON::PP version 2.97001" + "x_serialization_backend" : "JSON::PP version 4.02" } diff --git a/t/tainted.t b/t/tainted.t index 143e607..092929a 100644 --- a/t/tainted.t +++ b/t/tainted.t @@ -9,6 +9,8 @@ use Scalar::Util qw(tainted); use Test::More; BEGIN { + plan skip_all => 'Taint was always terrible. Just stop it already.'; + exit; # Taint mode is the devil. THE DEVIL I SAY unshift @INC, File::Spec->catdir(File::Spec->rel2abs(File::Basename::dirname(__FILE__)), 'lib') =~ /^(.*)$/; # Why on earth do we keep on with Taint mode?!? I hate all the things