[llvm-commits] CVS: llvm-test/TEST.nightly.report

Chris Lattner lattner at cs.uiuc.edu
Tue Dec 14 14:41:36 PST 2004



Changes in directory llvm-test:

TEST.nightly.report updated: 1.33 -> 1.34
---
Log message:

Print user times in columns, not wall times.


---
Diffs of the changes:  (+5 -5)

Index: llvm-test/TEST.nightly.report
diff -u llvm-test/TEST.nightly.report:1.33 llvm-test/TEST.nightly.report:1.34
--- llvm-test/TEST.nightly.report:1.33	Sun Dec 12 11:10:44 2004
+++ llvm-test/TEST.nightly.report	Tue Dec 14 16:41:21 2004
@@ -8,7 +8,7 @@
 $SortCol = 0;
 $TrimRepeatedPrefix = 1;
 
-my $WallTimeRE = "[A-Za-z0-9.: ]+\\(([0-9.]+) wall clock";
+my $WallTimeRE = "Time: ([0-9.]+) seconds \\([0-9.]+ wall clock";
 
 # FormatTime - Convert a time from 1m23.45 into 83.45
 sub FormatTime {
@@ -61,11 +61,11 @@
  ["Program"  , '\'([^\']+)\' Program'],
  [],
 # Times
- ["GCCAS"    , "TEST-RESULT-compile: $WallTimeRE"],
+ ["GCCAS"    , "TEST-RESULT-compile: .*$WallTimeRE"],
  ["Bytecode" , 'TEST-RESULT-compile: *([0-9]+)'],
- ["LLC<br>compile" , "TEST-RESULT-llc: $WallTimeRE"],
- ["LLC-BETA<br>compile" , "TEST-RESULT-llc-ls: $WallTimeRE"],
- ["JIT<br>codegen" , "TEST-RESULT-jit-comptime: $WallTimeRE"],
+ ["LLC<br>compile" , "TEST-RESULT-llc: .*$WallTimeRE"],
+ ["LLC-BETA<br>compile" , "TEST-RESULT-llc-ls: .*$WallTimeRE"],
+ ["JIT<br>codegen" , "TEST-RESULT-jit-comptime: .*$WallTimeRE"],
  ["Machine<br>code", 'TEST-RESULT-jit-machcode: *([0-9]+).*bytes of machine code'],
  [],
  ["GCC"      , 'TEST-RESULT-nat-time: program\s*([.0-9m:]+)', \&FormatTime],






More information about the llvm-commits mailing list