From b63f993a0f2d0e68511d302461f39bcff1580432 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Sat, 10 Sep 2011 20:46:00 +0100 Subject: [PATCH] Fix MSWin32 skip in porting/globvar.t (With VC it skipped anyway due to 'nm' not being available, but with GCC it ran further and crashed out on the open '-|' call.) --- t/porting/globvar.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/porting/globvar.t b/t/porting/globvar.t index 23f5c48..f34ab43 100644 --- a/t/porting/globvar.t +++ b/t/porting/globvar.t @@ -7,7 +7,7 @@ use Config; require 't/test.pl'; skip_all("Code to read symbols not ported to $^O") - if $^O eq 'VMS' or $^O eq 'Win32'; + if $^O eq 'VMS' or $^O eq 'MSWin32'; # Not investigated *why* we don't export these, but we don't, and we've not # received any bug reports about it causing problems: -- 1.8.3.1