1#!./perl 2 3# $RCSfile: multiline.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:20 $ 4 5print "1..5\n"; 6 7open(try,'>Comp.try') || (die "Can't open temp file."); 8 9$x = 'now is the time 10for all good men 11to come to. 12 13 14! 15 16'; 17 18$y = 'now is the time' . "\n" . 19'for all good men' . "\n" . 20'to come to.' . "\n\n\n!\n\n"; 21 22if ($x eq $y) {print "ok 1\n";} else {print "not ok 1\n";} 23 24print try $x; 25close try; 26 27open(try,'Comp.try') || (die "Can't reopen temp file."); 28$count = 0; 29$z = ''; 30while (<try>) { 31 $z .= $_; 32 $count = $count + 1; 33} 34 35if ($z eq $y) {print "ok 2\n";} else {print "not ok 2\n";} 36 37if ($count == 7) {print "ok 3\n";} else {print "not ok 3\n";} 38 39$_ = ($^O eq 'MSWin32') ? `type Comp.try` : `cat Comp.try`; 40 41if (/.*\n.*\n.*\n$/) {print "ok 4\n";} else {print "not ok 4\n";} 42 43close(try) || (die "Can't close temp file."); 44unlink 'Comp.try' || `/bin/rm -f Comp.try`; 45 46if ($_ eq $y) {print "ok 5\n";} else {print "not ok 5\n";} 47