From 014ea9337624fe20aca8892e73b6b3f741d8da9e Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 5 Feb 2020 16:08:24 -0800 Subject: [PATCH] [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. --- .../Python/lldbsuite/test/functionalities/gdb_remote_client/TestWasm.py | 1 - 1 file changed, 1 deletion(-) 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 38b34f6..1d38aa6 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 @@ class TestWasm(GDBRemoteTestBase): def qXferRead(self, obj, annex, offset, length): if obj == "libraries": xml = '
' % (self._obj_path, load_address) - print xml return xml, False else: return None, False -- 2.7.4