summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-11-07 13:13:15 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-11-07 13:13:15 +0000
commit3b7551e2c18f4c0bb8a881904803f808d6296cc4 (patch)
tree4b264374a817560744ae6cdfa951afe7ac1f5cc1 /t
parent14e4fe40502a3124a359f29afa1abf4e94a3a857 (diff)
parent009c130fc3ba16de26baf9bc4a9290f046a90258 (diff)
downloadperl-3b7551e2c18f4c0bb8a881904803f808d6296cc4.tar.gz
Integrate with Sarathy.
p4raw-id: //depot/cfgperl@4533
Diffstat (limited to 't')
-rwxr-xr-xt/io/print.t8
1 files changed, 5 insertions, 3 deletions
diff --git a/t/io/print.t b/t/io/print.t
index 180b1e88d7..0578ee6a29 100755
--- a/t/io/print.t
+++ b/t/io/print.t
@@ -1,8 +1,6 @@
#!./perl
-# $RCSfile: print.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:32 $
-
-print "1..16\n";
+print "1..18\n";
$foo = 'STDOUT';
print $foo "ok 1\n";
@@ -30,3 +28,7 @@ print "ok","11";
@x = ("ok","12\nok","13\nok");
@y = ("15\nok","16");
print @x,"14\nok",@y;
+{
+ local $\ = "ok 17\n# null =>[\000]\nok 18\n";
+ print "";
+}