[Lldb-commits] [lldb] r175842 - Ignore the check for com.apple.main-thread - it is not critical for the test case's logic

Malea, Daniel daniel.malea at intel.com
Thu Feb 21 16:48:40 PST 2013


Hi Enrico, you can get rid of that entire loop. Its only purpose was to prepend that darwin-specific string.

Cheers,
Dan

On 2013-02-21, at 7:39 PM, Enrico Granata <egranata at apple.com<mailto:egranata at apple.com>>
 wrote:

-        # 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]





More information about the lldb-commits mailing list