summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2003-07-02 19:10:45 +0100
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-02 20:10:47 +0000
commit127212b23933541d95e57814dfd91e6456b50ddd (patch)
tree0b17f86ddd0b52102984b3ffb889a163e6cbaeec /t
parent80bca1b464a2919ae4e20b8134207641e7b75d04 (diff)
downloadperl-127212b23933541d95e57814dfd91e6456b50ddd.tar.gz
various Deparse fixes
Message-ID: <20030702171045.GF2137@fdgroup.com> p4raw-id: //depot/perl@19939
Diffstat (limited to 't')
-rwxr-xr-xt/TEST2
-rwxr-xr-xt/op/ord.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/t/TEST b/t/TEST
index f2f623df79..92a9d8fd0e 100755
--- a/t/TEST
+++ b/t/TEST
@@ -228,7 +228,7 @@ EOT
my $testswitch = '-I. -MTestInit'; # -T will strict . from @INC
if ($type eq 'deparse') {
my $deparse =
- "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,".
+ "./perl $testswitch $switch -I../lib -MO=-qq,Deparse,-sv1.,".
"-l$deparse_opts$file_opts ".
"$test > $test.dp ".
"&& ./perl $testswitch $switch -I../lib $test.dp |";
diff --git a/t/op/ord.t b/t/op/ord.t
index ff51c18f8c..455666417f 100755
--- a/t/op/ord.t
+++ b/t/op/ord.t
@@ -2,7 +2,7 @@
BEGIN {
chdir 't' if -d 't';
- @INC = qw(.);
+ @INC = qw(. ../lib); # ../lib needed for test.deparse
require "test.pl";
}