diff options
author | Michael G. Schwern <schwern@pobox.com> | 2001-12-06 10:15:28 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-07 00:46:55 +0000 |
commit | ad20d923779746662bb01e56a1dd24d2ecb02dc2 (patch) | |
tree | b83b4594888d94faad0d8643b12860374dff5138 /t/base | |
parent | fedd8cf1f5167f0f052a36462feefd9188699fb9 (diff) | |
download | perl-ad20d923779746662bb01e56a1dd24d2ecb02dc2.tar.gz |
[PATCH t/base/lex.t, term.t] Purging echo from base tests
Date: Thu, 6 Dec 2001 15:15:28 -0500
Message-ID: <20011206201528.GF16414@blackrider>
(just the term.t, not the lex.t)
Subject: [PATCH t/comp/script.t] Elimininating needless logic, runs from t/ now
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 6 Dec 2001 15:22:22 -0500
Message-ID: <20011206202222.GG16414@blackrider>
Subject: [PATCH t/run/kill_perl.t] Eliminationg needless $^X logic
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 6 Dec 2001 15:31:58 -0500
Message-ID: <20011206203158.GI16414@blackrider>
Subject: [PATCH t/io/open.t t/test.pl] Cleanup and echo purge
From: Michael G Schwern <schwern@pobox.com>
Date: Thu, 6 Dec 2001 17:38:55 -0500
Message-ID: <20011206223855.GC22648@blackrider>
p4raw-id: //depot/perl@13503
Diffstat (limited to 't/base')
-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 |