fix quoting in t/io/inplace.t
[p5sagit/p5-mst-13.2.git] / t / io / inplace.t
CommitLineData
fe14fcc3 1#!./perl
8d063cd8 2
103a9d15 3$^I = $^O eq 'VMS' ? '_bak' : '.bak';
fe14fcc3 4
79072805 5# $RCSfile: inplace.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:29 $
8d063cd8 6
7print "1..2\n";
8
9@ARGV = ('.a','.b','.c');
68dc0745 10if ($^O eq 'MSWin32') {
11 $CAT = '.\perl -e "print<>"';
12 `.\\perl -le "print 'foo'" > .a`;
13 `.\\perl -le "print 'foo'" > .b`;
14 `.\\perl -le "print 'foo'" > .c`;
15}
103a9d15 16elsif ($^O eq 'VMS') {
17 $CAT = 'MCR []perl. -e "print<>"';
18 `MCR []perl. -le "print 'foo'" > ./.a`;
19 `MCR []perl. -le "print 'foo'" > ./.b`;
20 `MCR []perl. -le "print 'foo'" > ./.c`;
21}
68dc0745 22else {
23 $CAT = 'cat';
24 `echo foo | tee .a .b .c`;
25}
8d063cd8 26while (<>) {
27 s/foo/bar/;
28}
29continue {
30 print;
31}
32
68dc0745 33if (`$CAT .a .b .c` eq "bar\nbar\nbar\n") {print "ok 1\n";} else {print "not ok 1\n";}
103a9d15 34if (`$CAT .a$^I .b$^I .c$^I` eq "foo\nfoo\nfoo\n") {print "ok 2\n";} else {print "not ok 2\n";}
8d063cd8 35
9949743f 36unlink '.a', '.b', '.c', ".a$^I", ".b$^I", ".c$^I";