[Lldb-commits] [lldb] 3d422c4 - [lldb][API] Remove debug print in TestRunLocker.py

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 20 03:01:40 PDT 2023


Author: David Spickett
Date: 2023-09-20T10:01:32Z
New Revision: 3d422c46828387770be07547d335a71719901979

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

LOG: [lldb][API] Remove debug print in TestRunLocker.py

Added: 
    

Modified: 
    lldb/test/API/python_api/run_locker/TestRunLocker.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/python_api/run_locker/TestRunLocker.py b/lldb/test/API/python_api/run_locker/TestRunLocker.py
index 786cae10ab555ed..7604754fff57636 100644
--- a/lldb/test/API/python_api/run_locker/TestRunLocker.py
+++ b/lldb/test/API/python_api/run_locker/TestRunLocker.py
@@ -83,7 +83,6 @@ def runlocker_test(self, stop_at_entry):
         val = target.EvaluateExpression("SomethingToCall()")
         error = val.GetError()
         self.assertTrue(error.Fail(), "Failed to run expression")
-        print(f"Got Error: {error.GetCString()}")
         self.assertIn(
             "can't evaluate expressions when the process is running",
             error.GetCString(),


        


More information about the lldb-commits mailing list