MFB: these tests work just fine on macos-x

This commit is contained in:
Alexey Zakhlestin 2008-10-21 12:48:37 +00:00
parent 4cdeb0e808
commit d8393b570c
5 changed files with 10 additions and 10 deletions

View File

@ -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');

View File

@ -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";

View File

@ -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

View File

@ -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

View File

@ -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