summaryrefslogtreecommitdiff
path: root/Zend/tests/bug31341.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug31341.phpt')
-rwxr-xr-xZend/tests/bug31341.phpt29
1 files changed, 0 insertions, 29 deletions
diff --git a/Zend/tests/bug31341.phpt b/Zend/tests/bug31341.phpt
deleted file mode 100755
index 2f68006a07..0000000000
--- a/Zend/tests/bug31341.phpt
+++ /dev/null
@@ -1,29 +0,0 @@
---TEST--
-Bug #31341 (escape on curly inconsistent)
---FILE--
-<?php
-$a = array(
- "$ \{ ",
- " \{ $",
- " \{$ ",
- " $\{ ",
- " \$\{ ",
- " \{\$ ",
- "\$ \{ ",
- " \{ \$",
- "% \{ ");
-
-foreach ($a as $v) {
- echo("'$v'\n");
-}
-?>
---EXPECT--
-'$ \{ '
-' \{ $'
-' {$ '
-' $\{ '
-' $\{ '
-' \{$ '
-'$ \{ '
-' \{ $'
-'% \{ '