[Lldb-commits] [lldb] r133562 - /lldb/trunk/test/types/TestFailures.py
Johnny Chen
johnny.chen at apple.com
Tue Jun 21 15:40:34 PDT 2011
Author: johnny
Date: Tue Jun 21 17:40:34 2011
New Revision: 133562
URL: http://llvm.org/viewvc/llvm-project?rev=133562&view=rev
Log:
I messed up the test case id to turn logging on and then off. It is "test_long_type_with_dsym",
not "test_long_long_type_with_dsym".
Modified:
lldb/trunk/test/types/TestFailures.py
Modified: lldb/trunk/test/types/TestFailures.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/types/TestFailures.py?rev=133562&r1=133561&r2=133562&view=diff
==============================================================================
--- lldb/trunk/test/types/TestFailures.py (original)
+++ lldb/trunk/test/types/TestFailures.py Tue Jun 21 17:40:34 2011
@@ -17,9 +17,9 @@
def setUp(self):
# Call super's setUp().
TestBase.setUp(self)
- # If we're lucky, test_long_long_type_with_dsym fails.
+ # If we're lucky, test_long_type_with_dsym fails.
# Let's turn on logging just for that.
- if "test_long_long_type_with_dsym" in self.id():
+ if "test_long_type_with_dsym" in self.id():
self.runCmd(
"log enable -n -f %s lldb commands event process state" % os.environ["DEBUG_LLDB_LOG"])
self.runCmd(
@@ -28,9 +28,9 @@
def tearDown(self):
# Call super's tearDown().
TestBase.tearDown(self)
- # If we're lucky, test_long_long_type_with_dsym fails.
+ # If we're lucky, test_long_type_with_dsym fails.
# Let's turn off logging just for that.
- if "test_long_long_type_with_dsym" in self.id():
+ if "test_long_type_with_dsym" in self.id():
self.runCmd("log disable lldb")
self.runCmd("log disable gdb-remote")
More information about the lldb-commits
mailing list