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


        
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to