From: John E. Malmberg Date: Sat, 27 Aug 2005 19:54:26 +0000 (-0400) Subject: [patch@25334] t/op/magic.t - Last 3 tests invalid on VMS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5ec759d99e1d7da757cc5c14f943efa0811b8515;p=p5sagit%2Fp5-mst-13.2.git [patch@25334] t/op/magic.t - Last 3 tests invalid on VMS From: "John E. Malmberg" Message-ID: <4310FD32.70809@qsl.net> p4raw-id: //depot/perl@25336 --- diff --git a/t/op/magic.t b/t/op/magic.t index 134d049..54be238 100755 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -436,7 +436,7 @@ ok "@+" eq "10 1 6 10"; } # Test for bug [perl #36434] -{ +if (!$Is_VMS) { local @ISA; local %ENV; eval { push @ISA, __PACKAGE__ }; @@ -449,3 +449,9 @@ ok "@+" eq "10 1 6 10"; 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; +}