mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix minor bugs in the tester
llvm-svn: 7943
This commit is contained in:
parent
8e102e18b2
commit
41ddd7b26a
@ -174,7 +174,7 @@ my $NumObjects = `grep '^Compiling' $Prefix-Build-Log.txt | wc -l` + 0;
|
||||
|
||||
my $ConfigTimeU = GetRegexNum "^user", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
||||
my $ConfigTimeS = GetRegexNum "^sys", 0, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
||||
my $ConfigTime = $BuildTimeU+$BuildTimeS; # ConfigTime = User+System
|
||||
my $ConfigTime = $ConfigTimeU+$ConfigTimeS; # ConfigTime = User+System
|
||||
my $ConfigWallTime = GetRegexNum "^real", 0,"([0-9.]+)","$Prefix-Build-Log.txt";
|
||||
|
||||
my $BuildTimeU = GetRegexNum "^user", 1, "([0-9.]+)", "$Prefix-Build-Log.txt";
|
||||
@ -313,7 +313,7 @@ sub TestDirectory {
|
||||
if ($BuildError eq "") {
|
||||
$SingleSourceProgramsTable = TestDirectory("SingleSource");
|
||||
$MultiSourceProgramsTable = TestDirectory("MultiSource");
|
||||
system "cat $Prefix-SingleSource-Tests.txt $Prefix-MultiSource-Tests.txt > $Prefix-$SubDir-Tests.txt";
|
||||
system "cat $Prefix-SingleSource-Tests.txt $Prefix-MultiSource-Tests.txt > $Prefix-Tests.txt";
|
||||
}
|
||||
|
||||
my ($TestsAdded, $TestsRemoved, $TestsFixed, $TestsBroken) = ("","","","");
|
||||
|
Loading…
Reference in New Issue
Block a user