aboutsummaryrefslogtreecommitdiff
path: root/t/permalink.t
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-05-22 13:27:23 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-05-22 13:27:23 -0400
commite92c6722ddd559060514097ac1790c9edc2ee996 (patch)
tree8790610477041853accd24125ac85be35503c0e5 /t/permalink.t
parentb23b7a8d6112aa7519a388ca49a7864d1e86df21 (diff)
downloadikiwiki-e92c6722ddd559060514097ac1790c9edc2ee996.tar
ikiwiki-e92c6722ddd559060514097ac1790c9edc2ee996.tar.gz
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.
Diffstat (limited to 't/permalink.t')
-rwxr-xr-xt/permalink.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/permalink.t b/t/permalink.t
index 9b44cd72e..c326e8d27 100755
--- a/t/permalink.t
+++ b/t/permalink.t
@@ -5,7 +5,7 @@ use Test::More 'no_plan';
ok(! system("mkdir t/tmp"));
ok(! system("make -s ikiwiki.out"));
-ok(! system("LC_ALL=C perl -T -I. ./ikiwiki.out -plugin inline -url=http://example.com -cgiurl=http://example.com/ikiwiki.cgi -rss -atom -underlaydir=underlays/basewiki -templatedir=templates t/tinyblog t/tmp/out"));
+ok(! system("LC_ALL=C perl -I. ./ikiwiki.out -plugin inline -url=http://example.com -cgiurl=http://example.com/ikiwiki.cgi -rss -atom -underlaydir=underlays/basewiki -templatedir=templates t/tinyblog t/tmp/out"));
# This guid should never, ever change, for any reason whatsoever!
my $guid="http://example.com/post/";
ok(length `grep '<guid>$guid</guid>' t/tmp/out/index.rss`);