diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-12-04 18:40:34 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-12-04 18:40:34 +0000 |
commit | 12777837a4c74586e74aa005db5817408b56e40c (patch) | |
tree | ff83cc38518510b9d2fe8db5280f0d0902d24887 /lldb/packages/Python/lldbsuite/test/lang/objc | |
parent | b1583dc67d362faa9fea014083c9ee2ceee33168 (diff) | |
download | bcm5719-llvm-12777837a4c74586e74aa005db5817408b56e40c.tar.gz bcm5719-llvm-12777837a4c74586e74aa005db5817408b56e40c.zip |
Fix test error in TestObjCCheckers.py
llvm-svn: 254744
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/objc')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py index ce2da08c6ed..533ec2f6b7c 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py @@ -68,7 +68,7 @@ class ObjCCheckerTestCase(TestBase): # Make sure the call produced no NSLog stdout. stdout = process.GetSTDOUT(100) - self.assertTrue (len(stdout) == 0) + self.assertTrue (stdout is None or (len(stdout) == 0)) # Make sure the error is helpful: err_string = expr_error.GetCString() |