[Lldb-commits] [lldb] r143169 - /lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py

Johnny Chen johnny.chen at apple.com
Thu Oct 27 17:46:47 PDT 2011


Author: johnny
Date: Thu Oct 27 19:46:47 2011
New Revision: 143169

URL: http://llvm.org/viewvc/llvm-project?rev=143169&view=rev
Log:
This benchmark is meant to run the locally built 'lldb' binary, not the binary on the PATH env variable.

Modified:
    lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py

Modified: lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py?rev=143169&r1=143168&r2=143169&view=diff
==============================================================================
--- lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py (original)
+++ lldb/trunk/test/benchmarks/expression/TestExpressionCmd.py Thu Oct 27 19:46:47 2011
@@ -39,7 +39,7 @@
         self.stopwatch.reset()
         for i in range(count):
             # So that the child gets torn down after the test.
-            self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, self.lldbOption, exe))
+            self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe))
             child = self.child
 
             # Turn on logging for what the child sends back.





More information about the lldb-commits mailing list