Annotation of embedaddon/php/ext/standard/tests/general_functions/bug50732.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #50732 (exec() adds single byte twice to $output array)
                      3: --FILE--
                      4: <?php
                      5: exec("echo x", $output);
                      6: var_dump($output);
                      7: ?>
                      8: --EXPECT--
                      9: array(1) {
                     10:   [0]=>
                     11:   string(1) "x"
                     12: }

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