summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug33200.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/bug33200.phpt')
-rw-r--r--ext/pcre/tests/bug33200.phpt12
1 files changed, 0 insertions, 12 deletions
diff --git a/ext/pcre/tests/bug33200.phpt b/ext/pcre/tests/bug33200.phpt
deleted file mode 100644
index b00b72ac28..0000000000
--- a/ext/pcre/tests/bug33200.phpt
+++ /dev/null
@@ -1,12 +0,0 @@
---TEST--
-Bug #33200 (magic_quotes_sybase = On makes 'e' modifier misbehave)
---INI--
-magic_quotes_sybase=1
---FILE--
-<?php
-$str = 'some \'$sample\' text';
-$str = preg_replace("/(some.*text)/e", "strtoupper('\\1')", $str);
-echo $str;
-?>
---EXPECT--
-SOME '$SAMPLE' TEXT