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

index b388961..eddf38f 100755 (executable)
@@ -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";