summaryrefslogtreecommitdiff
path: root/Zend/tests/constants_005.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/constants_005.phpt')
-rwxr-xr-xZend/tests/constants_005.phpt11
1 files changed, 11 insertions, 0 deletions
diff --git a/Zend/tests/constants_005.phpt b/Zend/tests/constants_005.phpt
new file mode 100755
index 0000000000..097be97e14
--- /dev/null
+++ b/Zend/tests/constants_005.phpt
@@ -0,0 +1,11 @@
+--TEST--
+Persistent case insensetive and user defined constants
+--FILE--
+<?php
+var_dump(ZEND_THREAD_safe);
+define("ZEND_THREAD_safe", 123);
+var_dump(ZEND_THREAD_safe);
+?>
+--EXPECTF--
+bool(%s)
+int(123)