projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8f90a16
)
Fix test-skipping logic for File::Find under no-taint-perl
author
Steffen Mueller
<smueller@cpan.org>
Mon, 19 Nov 2012 06:51:49 +0000
(07:51 +0100)
committer
Steffen Mueller
<smueller@cpan.org>
Tue, 20 Nov 2012 07:06:14 +0000
(08:06 +0100)
lib/File/Find/t/taint.t
patch
|
blob
|
history
diff --git
a/lib/File/Find/t/taint.t
b/lib/File/Find/t/taint.t
index
f696a43
..
954c678
100644
(file)
--- a/
lib/File/Find/t/taint.t
+++ b/
lib/File/Find/t/taint.t
@@
-4,8
+4,8
@@
use Test::More;
BEGIN {
plan(
${^TAINT}
- ? (
skip_all => "A perl without taint support")
- : (
tests => 45)
+ ? (
tests => 45)
+ : (
skip_all => "A perl without taint support")
);
}