John E. Malmberg [Sat, 27 Aug 2005 19:54:26 +0000 (15:54 -0400)]
From: "John E. Malmberg" <wb8tyw@qsl.net>
Message-ID: <
4310FD32.70809@qsl.net>
p4raw-id: //depot/perl@25336
}
# Test for bug [perl #36434]
-{
+if (!$Is_VMS) {
local @ISA;
local %ENV;
eval { push @ISA, __PACKAGE__ };
ok( $@ eq '', 'Assign a shared key to a magic hash');
$@ and print "# $@";
}
+else {
+# Can not do this test on VMS, EPOC, and SYMBIAN according to comments
+# in mg.c/Perl_magic_clear_all_env()
+#
+ skip('Can\'t make assignment to \%ENV on this system') for 1..3;
+}