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
33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
import lldb
|
|
from lldbsuite.test.decorators import *
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test import lldbutil
|
|
|
|
|
|
class CPPAcceleratorTableTestCase(TestBase):
|
|
@skipUnlessDarwin
|
|
@skipIf(debug_info=no_match(["dwarf"]))
|
|
def test(self):
|
|
"""Test that type lookups fail early (performance)"""
|
|
self.build()
|
|
|
|
logfile = self.getBuildArtifact("dwarf.log")
|
|
|
|
self.expect("log enable dwarf lookups -f" + logfile)
|
|
target, process, thread, bkpt = lldbutil.run_to_source_breakpoint(
|
|
self, "break here", lldb.SBFileSpec("main.cpp")
|
|
)
|
|
# Pick one from the middle of the list to have a high chance
|
|
# of it not being in the first file looked at.
|
|
self.expect("frame variable inner_d")
|
|
|
|
with open(logfile) as f:
|
|
log = f.readlines()
|
|
n = 0
|
|
for line in log:
|
|
if re.findall(r"[abcdefg]\.o: FindByNameAndTag\(\)", line):
|
|
self.assertIn("d.o", line)
|
|
n += 1
|
|
|
|
self.assertEqual(n, 1, "".join(log))
|