From a0d0e21ea6ea90a22318550944fe6cb09ae10cda Mon Sep 17 00:00:00 2001 From: Larry Wall Date: Mon, 17 Oct 1994 23:00:00 +0000 Subject: perl 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 :-(. ] --- t/base/term.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 't/base/term.t') 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 ( 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 ( ne '') {print "ok 6\n";} else {print "not ok 6\n";} -- cgit v1.2.1