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:
2bfd325
)
Re: [PATCH] Re: perl winpid?
author
Yitzchak Scott-Thoennes
<sthoenna@efn.org>
Tue, 15 Feb 2005 20:45:13 +0000
(12:45 -0800)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Wed, 16 Feb 2005 13:20:55 +0000
(13:20 +0000)
Message-ID: <
20050216044512
.GA2516@efn.org>
p4raw-id: //depot/perl@23973
ext/B/t/stash.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/B/t/stash.t
b/ext/B/t/stash.t
index
a6e4635
..
879368a
100755
(executable)
--- a/
ext/B/t/stash.t
+++ b/
ext/B/t/stash.t
@@
-61,7
+61,7
@@
print "# got = @got\n";
@got = grep { ! /^Win32$/ } @got if $^O eq 'MSWin32';
@got = grep { ! /^NetWare$/ } @got if $^O eq 'NetWare';
@got = grep { ! /^(Cwd|File|File::Copy|OS2)$/ } @got if $^O eq 'os2';
-@got = grep { ! /^
Cwd$/
} @got if $^O eq 'cygwin';
+@got = grep { ! /^
(Cwd|Cygwin)$/
} @got if $^O eq 'cygwin';
if ($Is_VMS) {
@got = grep { ! /^File(?:::Copy)?$/ } @got;