[Lldb-commits] [lldb] 014ea93 - [lldb] Remove "print xml" from TestWasm.py

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 5 16:09:42 PST 2020


Author: Pavel Labath
Date: 2020-02-05T16:09:34-08:00
New Revision: 014ea9337624fe20aca8892e73b6b3f741d8da9e

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

LOG: [lldb] Remove "print xml" from TestWasm.py

It's not py3 compatible, and the test should not be printing this to stdout
(unless in --trace mode) anyway.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py
index 38b34f6d7417..1d38aa6c66ae 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py
@@ -224,7 +224,6 @@ def __init__(self, obj_path):
             def qXferRead(self, obj, annex, offset, length):
                 if obj == "libraries":
                     xml = '<library-list><library name=\"%s\"><section address=\"%d\"/></library></library-list>' % (self._obj_path, load_address)
-                    print xml
                     return xml, False
                 else:
                     return None, False


        


More information about the lldb-commits mailing list