Bug 379040. Test a new way of redirecting output. r=rcampbell

This commit is contained in:
sayrer@gmail.com 2007-05-03 09:44:48 -07:00
Родитель 98985584e3
Коммит c27000ae6b
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -502,6 +502,9 @@ sub executeMac {
$app .= "-bin";
my @runargs = ($app, '-foreground', '-no-remote', '-profile', $profile_arg);
push(@runargs, $test_url);
# redirect stderr to stdout for easier buildbot / tinderbox logging
open (STDERR, '>&', \*STDOUT) || die $!;
exec @runargs or die("Error starting application: $!\n");
} else {
waitpid($pid,0);