Skip to content

Commit

Permalink
Skip test if A: drive exists
Browse files Browse the repository at this point in the history
Otherwise the test case will fail for a very different reason.
  • Loading branch information
cmb69 committed Sep 3, 2020
1 parent 573ad18 commit c70a938
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ext/phar/tests/bug71625.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ if (!extension_loaded("phar") || !extension_loaded("zlib")) die("skip");
if(substr(PHP_OS, 0, 3) != 'WIN' ) {
die('skip windows only test');
}
if (file_exists('A:')) die('skip drive A: exists');

?>
--FILE--
Expand Down

0 comments on commit c70a938

Please sign in to comment.