[Lldb-commits] [lldb] c1fbede - [lldb][NFC] Remove debug print statement from TestExprDiagnostics.py

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Mon Jan 13 05:18:19 PST 2020


Author: Raphael Isemann
Date: 2020-01-13T14:17:55+01:00
New Revision: c1fbede984ec1eb87b35218d3b8161d3a6e92318

URL: https://github.com/llvm/llvm-project/commit/c1fbede984ec1eb87b35218d3b8161d3a6e92318
DIFF: https://github.com/llvm/llvm-project/commit/c1fbede984ec1eb87b35218d3b8161d3a6e92318.diff

LOG: [lldb][NFC] Remove debug print statement from TestExprDiagnostics.py

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/commands/expression/diagnostics/TestExprDiagnostics.py

Removed: 
    


################################################################################
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 dcd01a7f3b58..da29d7b2c1af 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 @@ def test_source_locations_from_objc_modules(self):
         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.


        


More information about the lldb-commits mailing list