Fix bug #61454 ext\standard\tests\general_functions\bug49847.phpt fails

This commit is contained in:
Anatoliy Belsky 2012-04-03 13:23:06 +02:00
parent c7e9c646ee
commit 84be455e22

View File

@ -9,7 +9,7 @@ if ($iswin) {
$s = str_repeat(' ', 4097);
$s .= '1';
file_put_contents($f, $s);
exec('more ' . $f, $output);
exec('type ' . $f, $output);
} else {
exec("printf %4098d 1", $output);
}