diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-13 16:08:49 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-13 16:09:49 -0800 |
commit | 63217fa24af28633b698fe8bd5844dedd922dc8e (patch) | |
tree | 34d7f888d914a9bec254019b24dd5be7097ec891 /t/TEST | |
parent | b255a112693312907754193cdbc1648d9182cb0d (diff) | |
download | perl-63217fa24af28633b698fe8bd5844dedd922dc8e.tar.gz |
Revert "t/TEST: add -w to shebang, fix a used-once warning"
This reverts commit da6e3e61d3d3194e7f769b7ddf7e6d16904c24d3.
This causes problems for deparse mode, which emits pages of warnings.
If we are going to add -w, we ought first to fix deparse testing to
work with it.
Diffstat (limited to 't/TEST')
-rwxr-xr-x | t/TEST | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!./perl -w +#!./perl # This is written in a peculiar style, since we're trying to avoid # most of the constructs we'll be testing for. (This comment is @@ -108,7 +108,7 @@ my %skip = ( ); -if ($::do_nothing || $::do_nothing) { # set by harness b4 requiring us +if ($::do_nothing) { return 1; } |