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