summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-08-02 14:21:55 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-08-02 14:21:55 +0000
commitbd4fc1f042e08965c82768f3b6911e13617c4bb2 (patch)
tree85f87c0d740542cb375c75dfc2042304b09f37c0 /t
parent98f185c877b1e36d5243b8e4023f75e5ff587c20 (diff)
downloadperl-bd4fc1f042e08965c82768f3b6911e13617c4bb2.tar.gz
Exact path to perl for open -|.
p4raw-id: //depot/cfgperl@3890
Diffstat (limited to 't')
-rwxr-xr-xt/io/open.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/io/open.t b/t/io/open.t
index 0154b8fc14..12d32f474c 100755
--- a/t/io/open.t
+++ b/t/io/open.t
@@ -80,7 +80,7 @@ unlink("afile");
}
{
print "# \$!='$!'\nnot " unless open(my $f, '-|', <<'EOC');
-perl -e "print qq(a row\n); print qq(another row\n)"
+./perl -e "print qq(a row\n); print qq(another row\n)"
EOC
print "ok 24\n";
@rows = <$f>;
@@ -91,7 +91,7 @@ print "ok 26\n";
}
{
print "# \$!='$!'\nnot " unless open(my $f, '|-', <<'EOC');
-perl -pe "s/^not //"
+./perl -pe "s/^not //"
EOC
print "ok 27\n";
@rows = <$f>;