This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
patch@26180 - t/op/array.t : Can't reset %ENV on VMS
authorJohn E. Malmberg <wb8tyw@qsl.net>
Mon, 21 Nov 2005 21:19:31 +0000 (16:19 -0500)
committerSteve Peters <steve@fisharerojo.org>
Tue, 22 Nov 2005 03:32:04 +0000 (03:32 +0000)
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-ID: <43828033.9040708@qsl.net>

p4raw-id: //depot/perl@26186

t/op/array.t

index 27565de..3a6a792 100755 (executable)
@@ -61,7 +61,7 @@ is($r, "0,0");
 $bar[2] = '2';
 $r = join(',', $#bar, @bar);
 is($r, "2,0,,2");
-reset 'b';
+reset 'b' if $^O ne 'VMS';
 @bar = ();
 $bar[0] = '0';
 $r = join(',', $#bar, @bar);