Skip to content

Commit c70a938

Browse files
committed
Skip test if A: drive exists
Otherwise the test case will fail for a very different reason.
1 parent 573ad18 commit c70a938

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ext/phar/tests/bug71625.phpt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ if (!extension_loaded("phar") || !extension_loaded("zlib")) die("skip");
99
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
1010
die('skip windows only test');
1111
}
12+
if (file_exists('A:')) die('skip drive A: exists');
1213

1314
?>
1415
--FILE--

0 commit comments

Comments
 (0)