mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
these tests work just fine on macos-x
This commit is contained in:
parent
7ff4c359e6
commit
a7730c9c8c
5 changed files with 10 additions and 10 deletions
|
@ -2,8 +2,8 @@
|
|||
Test copy() function: usage variations - destination dir access perms
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
|
||||
die("skip do not run on MacOS/Windows");
|
||||
if(substr(PHP_OS, 0, 3) == 'WIN')
|
||||
die("skip do not run on Windows");
|
||||
// Skip if being run by root (files are always readable, writeable and executable)
|
||||
$filename = dirname(__FILE__)."/copy_variation15_root_check.tmp";
|
||||
$fp = fopen($filename, 'w');
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
Test copy() function: usage variations - destination file access perms
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if( (stristr(PHP_OS, "Darwin")) || (stristr(PHP_OS, "Win")) )
|
||||
die("skip do not run on MacOS/Windows");
|
||||
if(substr(PHP_OS, 0, 3) == 'WIN')
|
||||
die("skip do not run on Windows");
|
||||
|
||||
// Skip if being run by root (files are always readable, writeable and executable)
|
||||
$filename = dirname(__FILE__)."/copy_variation9_root_check.tmp";
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
Test fnmatch() function: Basic functionality
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if( (stristr(PHP_OS, "Mac")) || (stristr(PHP_OS, "Win")) )
|
||||
die("skip do not run on MacOS/Windows");
|
||||
if(substr(PHP_OS, 0, 3) == 'WIN')
|
||||
die("skip do not run on Windows");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
Test fnmatch() function: Error conditions
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if( (stristr(PHP_OS, "Mac")) || (stristr(PHP_OS, "Win")) )
|
||||
die("skip do not run on MacOS/Windows");
|
||||
if(substr(PHP_OS, 0, 3) == 'WIN')
|
||||
die("skip do not run on Windows");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
Test fnmatch() function: Variations
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if( (stristr(PHP_OS, "Mac")) || (stristr(PHP_OS, "Win")) )
|
||||
die("skip do not run on MacOS/Windows");
|
||||
if(substr(PHP_OS, 0, 3) == 'WIN')
|
||||
die("skip do not run on Windows");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue