This is an ongoing series of commits that are reformatting our Python code. Reformatting is done with `black` (23.1.0). If you end up having problems merging this commit because you have made changes to a python file, the best way to handle that is to run `git checkout --ours <yourfile>` and then reformat it with black. RFC: https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style Differential revision: https://reviews.llvm.org/D151460
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
import os
|
|
import struct
|
|
import subprocess
|
|
|
|
import lldb
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class FreeBSDKernelVMCoreTestCase(TestBase):
|
|
NO_DEBUG_INFO_TESTCASE = True
|
|
|
|
def test_mem(self):
|
|
kernel_exec = "/boot/kernel/kernel"
|
|
mem_device = "/dev/mem"
|
|
|
|
if not os.access(kernel_exec, os.R_OK):
|
|
self.skipTest("Kernel @ %s is not readable" % (kernel_exec,))
|
|
if not os.access(mem_device, os.R_OK):
|
|
self.skipTest("Memory @ %s is not readable" % (mem_device,))
|
|
|
|
target = self.dbg.CreateTarget(kernel_exec)
|
|
process = target.LoadCore(mem_device)
|
|
hz_value = int(subprocess.check_output(["sysctl", "-n", "kern.hz"]))
|
|
|
|
self.assertTrue(process, PROCESS_IS_VALID)
|
|
self.assertEqual(process.GetNumThreads(), 1)
|
|
self.assertEqual(process.GetProcessID(), 0)
|
|
|
|
# test memory reading
|
|
self.expect("expr -- *(int *) &hz", substrs=["(int) $0 = %d" % hz_value])
|
|
|
|
main_mod = target.GetModuleAtIndex(0)
|
|
hz_addr = main_mod.FindSymbols("hz")[0].symbol.addr.GetLoadAddress(target)
|
|
error = lldb.SBError()
|
|
self.assertEqual(
|
|
process.ReadMemory(hz_addr, 4, error), struct.pack("<I", hz_value)
|
|
)
|
|
|
|
self.dbg.DeleteTarget(target)
|