summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2016-08-18 08:21:42 +0000
committerPavel Labath <labath@google.com>2016-08-18 08:21:42 +0000
commitc233995b1e2b514a4366248827e904e3c37e7582 (patch)
tree9e355d5ef817103b0987529b25f2fb7bdc0bcb02 /lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py
parent9361c439e8cef6fcc87edefbc3389ad1160984fd (diff)
downloadbcm5719-llvm-c233995b1e2b514a4366248827e904e3c37e7582.tar.gz
bcm5719-llvm-c233995b1e2b514a4366248827e904e3c37e7582.zip
Fix tests for the gdb-remote memory read packets
Part of TestGDBRemoteMemoryRead has been disabled since r259379 because it was incompatible with python3. This changes the test to use the lldb-server test framework, which is a more appropriate method of testing raw stub behaviour anyway (and should avoid the whole python 3 issue). llvm-svn: 279039
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py45
1 files changed, 0 insertions, 45 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py
deleted file mode 100644
index 1296d513b91..00000000000
--- a/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGDBRemoteMemoryRead.py
+++ /dev/null
@@ -1,45 +0,0 @@
-"""
-Tests the binary ($x) and hex ($m) memory read packets of the remote stub
-"""
-
-from __future__ import print_function
-
-
-
-import binascii
-import os
-
-import lldb
-from lldbsuite.test.decorators import *
-from lldbsuite.test.lldbtest import *
-from lldbsuite.test import lldbutil
-from lldbsuite.test import lldbplatformutil
-
-
-class MemoryReadTestCase(TestBase):
-
- mydir = TestBase.compute_mydir(__file__)
-
- @skipUnlessPlatform(lldbplatformutil.getDarwinOSTriples()+["linux"])
- def test_memory_read(self):
- self.build()
- exe = os.path.join (os.getcwd(), "a.out")
-
- target = self.dbg.CreateTarget(exe)
- lldbutil.run_break_set_by_symbol(self, "main")
-
- process = target.LaunchSimple (None, None, self.get_process_working_directory())
- self.assertTrue(process, PROCESS_IS_VALID)
- self.assertEqual(process.GetState(), lldb.eStateStopped, "Process is stopped")
-
- pc = process.GetSelectedThread().GetSelectedFrame().GetPC()
- for size in [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024]:
- error = lldb.SBError()
- memory = process.ReadMemory(pc, size, error)
- self.assertTrue(error.Success())
- # Results in trying to write non-printable characters to the session log.
- # self.match("process plugin packet send x%x,%x" % (pc, size), ["response:", memory])
- self.match("process plugin packet send m%x,%x" % (pc, size), ["response:", binascii.hexlify(memory)])
-
- process.Continue()
- self.assertEqual(process.GetState(), lldb.eStateExited, "Process exited")
OpenPOWER on IntegriCloud