forked from OSchip/llvm-project
Print out the stopwatch (which contains laps, total elapsed time, and average)
instead of just the average. llvm-svn: 136932
This commit is contained in:
parent
e464282f29
commit
0affe0213d
|
@ -25,9 +25,9 @@ class RepeatedExprsCase(BenchBase):
|
|||
|
||||
print
|
||||
self.run_lldb_repeated_exprs(self.exe_name, 100)
|
||||
print "lldb benchmark:", self.stopwatch
|
||||
self.run_gdb_repeated_exprs(self.exe_name, 100)
|
||||
print "lldb_avg: %f" % self.lldb_avg
|
||||
print "gdb_avg: %f" % self.gdb_avg
|
||||
print "gdb benchmark:", self.stopwatch
|
||||
print "lldb_avg/gdb_avg: %f" % (self.lldb_avg/self.gdb_avg)
|
||||
|
||||
def run_lldb_repeated_exprs(self, exe_name, count):
|
||||
|
|
Loading…
Reference in New Issue