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

git-svn-id: svn://10.0.0.236/trunk@225538 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sayrer%gmail.com 2007-05-03 16:44:48 +00:00
parent 15361bf79a
commit fca1b1c8cd

View File

@ -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);