mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.4'
* PHP-7.4: Fix skip reasons
This commit is contained in:
commit
ef1de5e973
10 changed files with 9 additions and 12 deletions
|
@ -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");
|
||||
?>
|
||||
|
|
|
@ -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--
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()");
|
||||
}
|
||||
|
|
|
@ -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--
|
||||
|
|
|
@ -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--
|
||||
|
|
|
@ -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--
|
||||
|
|
|
@ -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--
|
||||
|
|
|
@ -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--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue