This has led to many test suite failures because of copy and paste where new test cases were based off of other test cases and the "mydir" variable wasn't updated. Now you can call your superclasses "compute_mydir()" function with "__file__" as the sole argument and the relative path will be computed for you. llvm-svn: 196985
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
"""
|
|
Use lldb Python API to disassemble raw machine code bytes
|
|
"""
|
|
|
|
import os, time
|
|
import re
|
|
import unittest2
|
|
import lldb, lldbutil
|
|
from lldbtest import *
|
|
|
|
class DisassembleRawDataTestCase(TestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@python_api_test
|
|
def test_disassemble_raw_data(self):
|
|
"""Test disassembling raw bytes with the API."""
|
|
self.disassemble_raw_data()
|
|
|
|
def disassemble_raw_data(self):
|
|
"""Test disassembling raw bytes with the API."""
|
|
# Create a target from the debugger.
|
|
|
|
target = self.dbg.CreateTargetWithFileAndTargetTriple ("", "x86_64")
|
|
self.assertTrue(target, VALID_TARGET)
|
|
|
|
raw_bytes = bytearray([0x48, 0x89, 0xe5])
|
|
|
|
insts = target.GetInstructions(lldb.SBAddress(), raw_bytes)
|
|
|
|
inst = insts.GetInstructionAtIndex(0)
|
|
|
|
if self.TraceOn():
|
|
print
|
|
print "Raw bytes: ", [hex(x) for x in raw_bytes]
|
|
print "Disassembled%s" % str(inst)
|
|
|
|
self.assertTrue (inst.GetMnemonic(target) == "movq")
|
|
self.assertTrue (inst.GetOperands(target) == '%' + "rsp, " + '%' + "rbp")
|
|
|
|
if __name__ == '__main__':
|
|
import atexit
|
|
lldb.SBDebugger.Initialize()
|
|
atexit.register(lambda: lldb.SBDebugger.Terminate())
|
|
unittest2.main()
|