]> granicus.if.org Git - php/commitdiff
Fix skip reasons
authorChristoph M. Becker <cmbecker69@gmx.de>
Fri, 10 Jul 2020 09:22:07 +0000 (11:22 +0200)
committerChristoph M. Becker <cmbecker69@gmx.de>
Fri, 10 Jul 2020 09:26:48 +0000 (11:26 +0200)
These tests fail on Windows for different reasons, but not because
symlinks, links, or lstat() would not be supported on Windows
generally.

ext/standard/tests/file/001.phpt
ext/standard/tests/file/bug39367.phpt
ext/standard/tests/file/fflush_variation2.phpt
ext/standard/tests/file/fflush_variation3.phpt
ext/standard/tests/file/filetype_variation.phpt
ext/standard/tests/file/lstat_stat_basic.phpt
ext/standard/tests/file/mkdir-002.phpt
ext/standard/tests/file/realpath_basic4.phpt
ext/standard/tests/file/symlink.phpt
ext/standard/tests/file/symlink_to_symlink.phpt

index d5ab2e5a0b9e45efef193833ffda6526ddc3001b..f1dd8c0894fe3d38949b404ef1d02ffd5d0b202b 100644 (file)
@@ -3,7 +3,7 @@ File type functions
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
 ?>
index f3e79fcf5ed994d904832bb8b067c3611568333d..3535250329c8c0b7111b1961f253f9b90add146e 100644 (file)
@@ -3,7 +3,7 @@ Bug #39367 (clearstatcache() doesn't clear realpath cache)
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--
index 7f6b91430439dbe8bbb0c6c9d0ef60c7ca15d124..a10be353bcf61efe645f115b2ec00034e62d0082 100644 (file)
@@ -3,7 +3,7 @@ Test fflush() function: usage variations - links as resource
 --SKIPIF--
 <?php
 if( substr(PHP_OS, 0, 3) == 'WIN')
-  die("skip Links not valid on Windows");
+  die("skip not for Windows");
 ?>
 --FILE--
 <?php
index c74eeb8e25fab30ea2dfa8c1e37a1066dbb9eeca..7f9a1b67723438afad788c6d4a102c26a27a182a 100644 (file)
@@ -3,7 +3,7 @@ Test fflush() function: usage variations - hard links as resource
 --SKIPIF--
 <?php
 if( substr(PHP_OS, 0, 3) == 'WIN')
-  die("skip Links not valid on Windows");
+  die("skip not for Windows");
 ?>
 --FILE--
 <?php
index 019f73a3c86eb829334a826d908874624f094159..21bceedd022212ecbeab7d90c9d84efcc07e2152 100644 (file)
@@ -2,9 +2,6 @@
 Test filetype() function: Variations
 --SKIPIF--
 <?php
-if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no link()/symlink() on Windows');
-}
 if (!function_exists("posix_mkfifo")) {
     die("skip no posix_mkfifo()");
 }
index 24788e3a8a9c5084eda861b746576eae4c3dcfd7..8a488f644be9cf0cb772dc79f43036da25af64a1 100644 (file)
@@ -4,7 +4,7 @@ Test lstat() & stat() functions: basic functionality
 <?php
 if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip.. lstat() not available on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--
index 2cc849f4622f5c1fb5988d79fe17da6e0359b9fe..2953af88874ef0ea26917cc2315349e77d6c57da 100644 (file)
@@ -3,7 +3,7 @@ mkdir(dir, 0777) tests
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--
index 1af510d34a02b30526331e23b7deef78ae1f1e9a..47fd8040c7fc75b1e0183310a3105e54fe8c03b2 100644 (file)
@@ -3,7 +3,7 @@ Test realpath() with relative paths
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--
index 3afbfe6411474a3b605349eb2428b1d8fa7a0e04..f549cf6f07382046ab975d5470eb790ad038cb26 100644 (file)
@@ -3,7 +3,7 @@ symlink() & friends
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--
index c13c26d827f609b1af37751daaa4bc5799745f2d..3fcea5fde40049fbbf7852db5c912ae8ef272b16 100644 (file)
@@ -3,7 +3,7 @@ symlink() using a relative path, and symlink() to a symlink
 --SKIPIF--
 <?php
 if (substr(PHP_OS, 0, 3) == 'WIN') {
-    die('skip no symlinks on Windows');
+    die('skip not for Windows');
 }
 ?>
 --FILE--