diff options
| author | Enrico Granata <egranata@apple.com> | 2013-02-22 00:39:53 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2013-02-22 00:39:53 +0000 |
| commit | 2fb7c441d354177b6c0703dcb2bee5b6729ec7b4 (patch) | |
| tree | b55ec40d759964c3f848d407592e2cc3dd64e11b /lldb/test/logging/TestLogging.py | |
| parent | 0337c27fcd7cedaab6206e271002afdfed8b7413 (diff) | |
| download | bcm5719-llvm-2fb7c441d354177b6c0703dcb2bee5b6729ec7b4.tar.gz bcm5719-llvm-2fb7c441d354177b6c0703dcb2bee5b6729ec7b4.zip | |
Ignore the check for com.apple.main-thread - it is not critical for the test case's logic
llvm-svn: 175842
Diffstat (limited to 'lldb/test/logging/TestLogging.py')
| -rw-r--r-- | lldb/test/logging/TestLogging.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/logging/TestLogging.py b/lldb/test/logging/TestLogging.py index 28cfb7669c1..298629ec092 100644 --- a/lldb/test/logging/TestLogging.py +++ b/lldb/test/logging/TestLogging.py @@ -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)) |

