[Lldb-commits] [lldb] r155170 - /lldb/trunk/test/lldbbench.py

Johnny Chen johnny.chen at apple.com
Thu Apr 19 16:50:00 PDT 2012


Author: johnny
Date: Thu Apr 19 18:50:00 2012
New Revision: 155170

URL: http://llvm.org/viewvc/llvm-project?rev=155170&view=rev
Log:
Tests decorated with @benchmarks_test do not participate in the remote-macosx test suite run.
But, still, tearDown() should call super.tearDown(), not super.setUp(). :-)

Modified:
    lldb/trunk/test/lldbbench.py

Modified: lldb/trunk/test/lldbbench.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbbench.py?rev=155170&r1=155169&r2=155170&view=diff
==============================================================================
--- lldb/trunk/test/lldbbench.py (original)
+++ lldb/trunk/test/lldbbench.py Thu Apr 19 18:50:00 2012
@@ -106,7 +106,7 @@
 
     def tearDown(self):
         """Fixture for unittest test case teardown."""
-        super(BenchBase, self).setUp()
+        super(BenchBase, self).tearDown()
         #TestBase.tearDown(self)
         del self.stopwatch
 





More information about the lldb-commits mailing list