[lldb] Remove "print xml" from TestWasm.py
authorPavel Labath <labath@google.com>
Thu, 6 Feb 2020 00:08:24 +0000 (16:08 -0800)
committerPavel Labath <labath@google.com>
Thu, 6 Feb 2020 00:09:34 +0000 (16:09 -0800)
It's not py3 compatible, and the test should not be printing this to stdout
(unless in --trace mode) anyway.

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

index 38b34f6..1d38aa6 100644 (file)
@@ -224,7 +224,6 @@ class TestWasm(GDBRemoteTestBase):
             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