[Lldb-commits] [lldb] r175842 - Ignore the check for com.apple.main-thread - it is not critical for the test case's logic
Enrico Granata
egranata at apple.com
Thu Feb 21 16:39:53 PST 2013
Author: enrico
Date: Thu Feb 21 18:39:53 2013
New Revision: 175842
URL: http://llvm.org/viewvc/llvm-project?rev=175842&view=rev
Log:
Ignore the check for com.apple.main-thread - it is not critical for the test case's logic
Modified:
lldb/trunk/test/logging/TestLogging.py
Modified: lldb/trunk/test/logging/TestLogging.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/logging/TestLogging.py?rev=175842&r1=175841&r2=175842&view=diff
==============================================================================
--- lldb/trunk/test/logging/TestLogging.py (original)
+++ lldb/trunk/test/logging/TestLogging.py Thu Feb 21 18:39:53 2013
@@ -63,9 +63,8 @@ class LogTestCase(TestBase):
"HandleCommand, command succeeded\n",
]
- # com.apple.main-thread identifier appears on darwin only
if sys.platform.startswith("darwin"):
- expected_log_lines = ['com.apple.main-thread ' + x for x in expected_log_lines]
+ expected_log_lines = [x for x in expected_log_lines]
self.assertTrue (os.path.isfile (log_file))
More information about the lldb-commits
mailing list