projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
2b8740d
)
fix POSIX.t#13 for windos
Gurusamy Sarathy [Sun, 5 Aug 2001 16:28:22 +0000 (16:28 +0000)]
p4raw-id: //depot/perl@11583
ext/POSIX/POSIX.t
patch
|
blob
|
blame
|
history
diff --git
a/ext/POSIX/POSIX.t
b/ext/POSIX/POSIX.t
index
b388961
..
eddf38f
100755
(executable)
--- a/
ext/POSIX/POSIX.t
+++ b/
ext/POSIX/POSIX.t
@@
-96,7
+96,7
@@
my $pat;
if ($Is_MacOS) {
$pat = qr/:t:$/;
} else {
- $pat = qr#/t$#;
+ $pat = qr#[\\/]t$#i;
}
print getcwd() =~ $pat ? "ok 13\n" : "not ok 13\n";