Commit 014ea933 authored by Pavel Labath's avatar Pavel Labath
Browse files

[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.
parent 97edc0dc
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -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