summaryrefslogtreecommitdiff
path: root/tests/security/open_basedir_symlink.phpt
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2017-02-22 12:31:06 +0100
committerKalle Sommer Nielsen <kalle@php.net>2017-02-22 12:31:06 +0100
commitf9959ee7c2004919675d9cdc7c82f886f099f15f (patch)
treef23eafdb606c1e8f4b3c89283c9c1a824c480658 /tests/security/open_basedir_symlink.phpt
parentdbdb0819b24997ca70fe5609489a6bf828f1feba (diff)
downloadphp-git-f9959ee7c2004919675d9cdc7c82f886f099f15f.tar.gz
Change PHP_OS_FAMILY slightly
* PHP_OS_FAMILY is now a macro, to allow extensions to take advantage of it, it is defined in php.h * Values are not upper-case-first, not always uppercase. Windows is no longer just "Win", if we want the short version for testing then PHP_OS is always WINNT anyway
Diffstat (limited to 'tests/security/open_basedir_symlink.phpt')
-rw-r--r--tests/security/open_basedir_symlink.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/security/open_basedir_symlink.phpt b/tests/security/open_basedir_symlink.phpt
index fe138cf956..ae431df2ca 100644
--- a/tests/security/open_basedir_symlink.phpt
+++ b/tests/security/open_basedir_symlink.phpt
@@ -2,8 +2,8 @@
Test open_basedir configuration
--SKIPIF--
<?php
-if(PHP_OS_FAMILY === "WIN") {
- die('skip no symlinks on Windows');
+if(PHP_OS_FAMILY === "Windows") {
+ die('skip not for Windows');
}
?>
--INI--