summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/bug26927.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/bug26927.phpt')
-rw-r--r--ext/pcre/tests/bug26927.phpt11
1 files changed, 0 insertions, 11 deletions
diff --git a/ext/pcre/tests/bug26927.phpt b/ext/pcre/tests/bug26927.phpt
deleted file mode 100644
index 25b6b2e572..0000000000
--- a/ext/pcre/tests/bug26927.phpt
+++ /dev/null
@@ -1,11 +0,0 @@
---TEST--
-Bug #26927 (preg_quote() does not escape \0)
---FILE--
-<?php
- $str = "a\000b";
- $str_quoted = preg_quote($str);
- var_dump(preg_match("!{$str_quoted}!", $str), $str_quoted);
-?>
---EXPECT--
-int(1)
-string(4) "a\0b"