summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJohn E. Malmberg <wb8tyw@qsl.net>2005-11-21 16:19:31 -0500
committerSteve Peters <steve@fisharerojo.org>2005-11-22 03:32:04 +0000
commit14ce8c55775aeffb1a1bfc5e3d60b3e29b1aab67 (patch)
tree1fa0da945cf50fd6dbb161966838993f2bb7507a /t
parent91cec4fb3b9ce703dab10db05e717127b2a9ed44 (diff)
downloadperl-14ce8c55775aeffb1a1bfc5e3d60b3e29b1aab67.tar.gz
patch@26180 - t/op/array.t : Can't reset %ENV on VMS
From: "John E. Malmberg" <wb8tyw@qsl.net> Message-ID: <43828033.9040708@qsl.net> p4raw-id: //depot/perl@26186
Diffstat (limited to 't')
-rwxr-xr-xt/op/array.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/array.t b/t/op/array.t
index 27565de702..3a6a792284 100755
--- a/t/op/array.t
+++ b/t/op/array.t
@@ -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);