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

git-svn-id: svn://10.0.0.236/trunk@126220 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcafee%netscape.com
2002-08-02 04:45:03 +00:00
parent e8cbe70a47
commit 19390565b9

View File

@@ -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.
}
}