summaryrefslogtreecommitdiff
path: root/t/base
diff options
context:
space:
mode:
authorLarry Wall <lwall@netlabs.com>1994-10-17 23:00:00 +0000
committerLarry Wall <lwall@netlabs.com>1994-10-17 23:00:00 +0000
commita0d0e21ea6ea90a22318550944fe6cb09ae10cda (patch)
treefaca1018149b736b1142f487e44d1ff2de5cc1fa /t/base
parent85e6fe838fb25b257a1b363debf8691c0992ef71 (diff)
downloadperl-a0d0e21ea6ea90a22318550944fe6cb09ae10cda.tar.gz
perl 5.000perl-5.000
[editor's note: this commit combines approximate 4 months of furious releases of Andy Dougherty and Larry Wall - see pod/perlhist.pod for details. Andy notes that; Alas neither my "Irwin AccuTrack" nor my DC 600A quarter-inch cartridge backup tapes from that era seem to be readable anymore. I guess 13 years exceeds the shelf life for that backup technology :-(. ]
Diffstat (limited to 't/base')
-rwxr-xr-xt/base/lex.t2
-rwxr-xr-xt/base/term.t4
2 files changed, 3 insertions, 3 deletions
diff --git a/t/base/lex.t b/t/base/lex.t
index 1828ac62e8..f25cd2a12c 100755
--- a/t/base/lex.t
+++ b/t/base/lex.t
@@ -65,7 +65,7 @@ print qq/ok 14\n/;
print qq(ok 15\n);
print qq
-ok 16\n
+[ok 16\n]
;
print q<ok 17
diff --git a/t/base/term.t b/t/base/term.t
index 0f9a46f6c9..42cd56fe0b 100755
--- a/t/base/term.t
+++ b/t/base/term.t
@@ -29,7 +29,7 @@ if ($x == '1') {print "ok 4\n";} else {print "not ok 4\n";}
# check <> pseudoliteral
-open(try, "/dev/null") || (die "Can't open /dev/null.");
+open(try, "/dev/null") || open(try,"nla0:") || (die "Can't open /dev/null.");
if (<try> eq '') {
print "ok 5\n";
}
@@ -38,5 +38,5 @@ else {
die "/dev/null IS NOT A CHARACTER SPECIAL FILE!!!!\n" unless -c '/dev/null';
}
-open(try, "../Makefile") || (die "Can't open ../Makefile.");
+open(try, "../Configure") || (die "Can't open ../Configure.");
if (<try> ne '') {print "ok 6\n";} else {print "not ok 6\n";}