diff options
author | Raphael Isemann <teemperor@gmail.com> | 2020-01-13 14:17:55 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2020-01-13 14:17:55 +0100 |
commit | c1fbede984ec1eb87b35218d3b8161d3a6e92318 (patch) | |
tree | 5efc38b98de7ba2d2b1afb3d1a46a835ebe29c27 /lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py | |
parent | 6c203149b60e92e802df0c7a431744c337830a09 (diff) | |
download | bcm5719-llvm-c1fbede984ec1eb87b35218d3b8161d3a6e92318.tar.gz bcm5719-llvm-c1fbede984ec1eb87b35218d3b8161d3a6e92318.zip |
[lldb][NFC] Remove debug print statement from TestExprDiagnostics.py
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py b/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py index dcd01a7f3b5..da29d7b2c1a 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py +++ b/lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py @@ -101,7 +101,6 @@ class ExprDiagnosticsTestCase(TestBase): self.runCmd("expr @import Foundation") value = frame.EvaluateExpression("NSLog(1);") self.assertFalse(value.GetError().Success()) - print(value.GetError().GetCString()) # LLDB should print the source line that defines NSLog. To not rely on any # header paths/line numbers or the actual formatting of the Foundation headers, only look # for a few tokens in the output. |