Forgot to cleanup layout_time for 2nd run, this was causing the graph server to freak out.

This commit is contained in:
mcafee%netscape.com 2002-08-02 04:45:03 +00:00
Родитель 0ecd87d1af
Коммит 996411341b
1 изменённых файлов: 8 добавлений и 2 удалений

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

@ -22,7 +22,7 @@ use File::Path; # for rmtree();
use Config; # for $Config{sig_name} and $Config{sig_num}
use File::Find ();
$::UtilsVersion = '$Revision: 1.175 $ ';
$::UtilsVersion = '$Revision: 1.176 $ ';
package TinderUtils;
@ -1543,6 +1543,7 @@ sub run_all_tests {
",");
if($layout_time) {
# Pick off first number.
chomp($layout_time);
my @times = split(',', $layout_time);
$layout_time = $times[0]; # Set layout time to first number that we scraped.
@ -1566,7 +1567,12 @@ sub run_all_tests {
# Print failure message if we fail 2nd time.
unless($layout_time) {
print_log "TinderboxPrint:Tp:[CRASH]\n";
print_log "TinderboxPrint:Tp:[CRASH]\n";
} else {
# Pick off first number.
chomp($layout_time);
my @times = split(',', $layout_time);
$layout_time = $times[0]; # Set layout time to first number that we scraped.
}
}