summaryrefslogtreecommitdiff
path: root/ext/POSIX
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2001-08-05 16:28:22 +0000
committerGurusamy Sarathy <gsar@cpan.org>2001-08-05 16:28:22 +0000
commit79b7b35ccbd2af9c214065d598f0cc565f931003 (patch)
treee6b3cbf8425e2efc887ffbc28500b519cc21d511 /ext/POSIX
parent2b8740d823413f94180ffcaa10364510759dbab1 (diff)
downloadperl-79b7b35ccbd2af9c214065d598f0cc565f931003.tar.gz
fix POSIX.t#13 for windos
p4raw-id: //depot/perl@11583
Diffstat (limited to 'ext/POSIX')
-rwxr-xr-xext/POSIX/POSIX.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/POSIX/POSIX.t b/ext/POSIX/POSIX.t
index b388961eca..eddf38f2fb 100755
--- 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";