Annotation of embedaddon/php/tests/lang/bug25145.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Bug #25145 (SEGV on recpt of form input with name like "123[]")
        !             3: --GET--
        !             4: 123[]=SEGV
        !             5: --FILE--
        !             6: <?php
        !             7: 
        !             8: var_dump($_REQUEST);
        !             9: echo "Done\n";
        !            10: 
        !            11: ?>
        !            12: --EXPECT--
        !            13: array(1) {
        !            14:   [123]=>
        !            15:   array(1) {
        !            16:     [0]=>
        !            17:     string(4) "SEGV"
        !            18:   }
        !            19: }
        !            20: Done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>