]> granicus.if.org Git - php/commitdiff
Fix #80139: copy_variation5.phpt fails when run on bind mount
authorChristoph M. Becker <cmbecker69@gmx.de>
Wed, 23 Sep 2020 10:13:35 +0000 (12:13 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Wed, 23 Sep 2020 10:14:40 +0000 (12:14 +0200)
This test case is not supposed to run on case-insensitive file system;
just checking for macOS/Windows doesn't cut it.

ext/standard/tests/file/copy_variation5.phpt

index 6da9f1f48c725779146e12bf7033efda14f393c0..0f0d985c3d858d7dccda24dbe99f7e5511936097 100644 (file)
@@ -2,8 +2,7 @@
 Test copy() function: usage variations - destination file names(case sensitive)
 --SKIPIF--
 <?php
-if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
-  die("skip do not run on MacOS/Windows");
+if (file_exists(__DIR__ . '/COPY_VARIATION5.PHPT')) die('skip requires case-sensitive file system');
 ?>
 --FILE--
 <?php