diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2001-08-05 16:28:22 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2001-08-05 16:28:22 +0000 |
commit | 79b7b35ccbd2af9c214065d598f0cc565f931003 (patch) | |
tree | e6b3cbf8425e2efc887ffbc28500b519cc21d511 /ext/POSIX | |
parent | 2b8740d823413f94180ffcaa10364510759dbab1 (diff) | |
download | perl-79b7b35ccbd2af9c214065d598f0cc565f931003.tar.gz |
fix POSIX.t#13 for windos
p4raw-id: //depot/perl@11583
Diffstat (limited to 'ext/POSIX')
-rwxr-xr-x | ext/POSIX/POSIX.t | 2 |
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"; |