]> granicus.if.org Git - php/commitdiff
Skip test if A: drive exists
authorChristoph M. Becker <cmbecker69@gmx.de>
Thu, 3 Sep 2020 08:26:05 +0000 (10:26 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Thu, 3 Sep 2020 08:29:38 +0000 (10:29 +0200)
Otherwise the test case will fail for a very different reason.

ext/phar/tests/bug71625.phpt

index afdf56e8ad6eb52cdb2232ba195b301e67cb7c3a..97b5ea8c742202103fd2306c551de1af2756a70f 100644 (file)
@@ -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--