summaryrefslogtreecommitdiff
path: root/tests/lang/bug25145.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lang/bug25145.phpt')
-rwxr-xr-xtests/lang/bug25145.phpt22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/lang/bug25145.phpt b/tests/lang/bug25145.phpt
deleted file mode 100755
index e33580ab0d..0000000000
--- a/tests/lang/bug25145.phpt
+++ /dev/null
@@ -1,22 +0,0 @@
---TEST--
-Bug #25145 (SEGV on recpt of form input with name like "123[]")
---SKIPIF--
-<?php if (php_sapi_name() == 'cli') echo 'skip'; ?>
---GET--
-123[]=SEGV
---FILE--
-<?php
-
-var_dump($_REQUEST);
-echo "Done\n";
-
-?>
---EXPECT--
-array(1) {
- [123]=>
- array(1) {
- [0]=>
- string(4) "SEGV"
- }
-}
-Done