diff options
Diffstat (limited to 'lldb/test/tools/lldb-server/TestLldbGdbServer.py')
-rw-r--r-- | lldb/test/tools/lldb-server/TestLldbGdbServer.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lldb/test/tools/lldb-server/TestLldbGdbServer.py b/lldb/test/tools/lldb-server/TestLldbGdbServer.py index 9d8f418b906..a314f163b50 100644 --- a/lldb/test/tools/lldb-server/TestLldbGdbServer.py +++ b/lldb/test/tools/lldb-server/TestLldbGdbServer.py @@ -10,6 +10,8 @@ gdb remote packet functional areas. For now it contains the initial set of tests implemented. """ +from __future__ import print_function + import lldb_shared import unittest2 @@ -1343,7 +1345,7 @@ class LldbGdbServerTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): # Write flipped bit pattern of existing value to each register. (successful_writes, failed_writes) = self.flip_all_bits_in_each_register_value(gpr_reg_infos, endian) - # print "successful writes: {}, failed writes: {}".format(successful_writes, failed_writes) + # print("successful writes: {}, failed writes: {}".format(successful_writes, failed_writes)) self.assertTrue(successful_writes > 0) # Note: as of this moment, a hefty number of the GPR writes are failing with E32 (everything except rax-rdx, rdi, rsi, rbp). |