diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-12-06 10:15:28 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-06 19:47:53 +0000 |
commit | 4c565af2eb5885faf900f8bf0ccbd0b4a2a10c04 (patch) | |
tree | e2d8beabc7372286e1016830c6dcdd54b17dfcfb /t/base/term.t | |
parent | b5bfebd7c629d0200c9cac51c56fad3ced472c02 (diff) | |
download | perl-4c565af2eb5885faf900f8bf0ccbd0b4a2a10c04.tar.gz |
(retracted by #13499)
Subject: [PATCH t/base/lex.t, term.t] Purging echo from base tests
Message-ID: <20011206201528.GF16414@blackrider>
p4raw-id: //depot/perl@13496
Diffstat (limited to 't/base/term.t')
-rwxr-xr-x | t/base/term.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/term.t b/t/base/term.t index 000bff1b15..2d3fe5a5e1 100755 --- a/t/base/term.t +++ b/t/base/term.t @@ -19,7 +19,7 @@ else {print "not ok 1\n";} # check `` processing -$x = `echo hi there`; +$x = `$^X -le "print 'hi there'"`; if ($x eq "hi there\n") {print "ok 2\n";} else {print "not ok 2\n";} # check $#array |