summaryrefslogtreecommitdiff
path: root/ext/standard/tests
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2019-01-19 13:56:51 +0100
committerAnatol Belski <ab@php.net>2019-01-19 13:56:51 +0100
commit1bd7a9d6d1898d7941a871ede023db212580f958 (patch)
tree23da36aa7ee767bdc7a3fa90f1710fdc6173542b /ext/standard/tests
parent089f7c0bc28d399b0420aa6ef058e4c1c120b2ae (diff)
parent52730fa30a848eabfcb02abea30446ef657a0f01 (diff)
downloadphp-git-1bd7a9d6d1898d7941a871ede023db212580f958.tar.gz
Merge branch 'PHP-7.3'
* PHP-7.3: Skip test on unsuitable build
Diffstat (limited to 'ext/standard/tests')
-rw-r--r--ext/standard/tests/file/realpath_bug77484.phpt4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/standard/tests/file/realpath_bug77484.phpt b/ext/standard/tests/file/realpath_bug77484.phpt
index 0c291f8f0e..85595d09e3 100644
--- a/ext/standard/tests/file/realpath_bug77484.phpt
+++ b/ext/standard/tests/file/realpath_bug77484.phpt
@@ -5,6 +5,10 @@ Bug #77484 Zend engine crashes when calling realpath in invalid working dir
if (substr(PHP_OS, 0, 3) == 'WIN') {
die("skip can't remove CWD on Windows");
}
+if (PHP_ZTS) {
+ /* TODO eliminate difference in TS build. */
+ die("skip Not for ZTS");
+}
?>
--FILE--
<?php