This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
378eeda
)
Fix MSWin32 skip in porting/globvar.t
author
Steve Hay
<steve.m.hay@googlemail.com>
Sat, 10 Sep 2011 19:46:00 +0000
(20:46 +0100)
committer
Steve Hay
<steve.m.hay@googlemail.com>
Sat, 10 Sep 2011 19:46:00 +0000
(20:46 +0100)
(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
patch
|
blob
|
blame
|
history
diff --git
a/t/porting/globvar.t
b/t/porting/globvar.t
index
23f5c48
..
f34ab43
100644
(file)
--- 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 '
MS
Win32';
# Not investigated *why* we don't export these, but we don't, and we've not
# received any bug reports about it causing problems: