Failed bloat test should turn tree orange, we now check for -1 case.

This commit is contained in:
mcafee%netscape.com 2000-01-09 04:07:57 +00:00
Родитель d1176fcb0f
Коммит e068e10505
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -6,7 +6,7 @@ use Sys::Hostname;
use POSIX "sys_wait_h"; use POSIX "sys_wait_h";
use Cwd; use Cwd;
$Version = '$Revision: 1.31 $ '; $Version = '$Revision: 1.32 $ ';
sub PrintUsage { sub PrintUsage {
@ -772,7 +772,7 @@ sub RunBloatTest {
alarm 0; alarm 0;
print LOG "Client quit Bloat Test with status $status\n"; print LOG "Client quit Bloat Test with status $status\n";
if ($status == 0) { if ($status >= 0) {
print LOG "$Binary has crashed or quit on the BloatTest. Turn the tree orange now.\n"; print LOG "$Binary has crashed or quit on the BloatTest. Turn the tree orange now.\n";
print LOG "----------- failure Output from mozilla-bin for BloatTest --------------- \n"; print LOG "----------- failure Output from mozilla-bin for BloatTest --------------- \n";
open READRUNLOG, "$BinaryLog"; open READRUNLOG, "$BinaryLog";