in reply to Taint mode testing a module
Generally, if your .t file starts as:
then your test will be run in taint mode. It's then up to you to figure out how to get the rest of your information in a taint-safe manner. :-) (Generally, I turn it off, it's too much of a headache for my use cases, I think... but maybe I just misunderstand it.)#!/usr/bin/perl -T
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Taint mode testing a module
by mrider (Beadle) on Oct 17, 2012 at 20:29 UTC | |
by Tanktalus (Canon) on Oct 17, 2012 at 21:41 UTC | |
by mrider (Beadle) on Oct 17, 2012 at 22:32 UTC |