From e92c6722ddd559060514097ac1790c9edc2ee996 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Fri, 22 May 2009 13:27:23 -0400 Subject: stop using perl -T here See bug #411786. Perl's random corruption of the taint flag is even effecting the untainting of source filenames now (which AFAICS, is a proper untaint and always worked before..), and that makes using ikiwiki in perl taint mode not work at all. --- t/syntax.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/syntax.t') diff --git a/t/syntax.t b/t/syntax.t index d09d17f7f..05d955f33 100755 --- a/t/syntax.t +++ b/t/syntax.t @@ -12,7 +12,7 @@ push @libs, 'IkiWiki/Plugin/skeleton.pm.example'; plan(tests => (@progs + @libs)); foreach my $file (@progs) { - ok(system("perl -T -c $file >/dev/null 2>&1") eq 0, $file); + ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file); } foreach my $file (@libs) { ok(system("perl -c $file >/dev/null 2>&1") eq 0, $file); -- cgit v1.2.3