"""Test lldb's startup delays creating a target, setting a breakpoint, and run to breakpoint stop."""
import sys
import lldb
from lldbsuite.test import configuration
from lldbsuite.test import lldbtest_config
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbbench import *
class StartupDelaysBench(BenchBase):
def setUp(self):
BenchBase.setUp(self)
self.stopwatch2 = Stopwatch()
self.stopwatch3 = Stopwatch()
self.exe = lldbtest_config.lldbExec
self.break_spec = "-n main"
self.count = 30
@benchmarks_test
@no_debug_info_test
@add_test_categories(["pexpect"])
def test_startup_delay(self):
"""Test start up delays creating a target, setting a breakpoint, and run to breakpoint stop."""
print()
self.run_startup_delays_bench(self.exe, self.break_spec, self.count)
print("lldb startup delay (create fresh target) benchmark:", self.stopwatch)
print("lldb startup delay (set first breakpoint) benchmark:", self.stopwatch2)
print("lldb startup delay (run to breakpoint) benchmark:", self.stopwatch3)
def run_startup_delays_bench(self, exe, break_spec, count):
import pexpect
self.child_prompt = "(lldb) "
prompt = self.child_prompt
self.stopwatch.reset()
self.stopwatch2.reset()
for i in range(count):
self.child = pexpect.spawn(
"%s %s" % (lldbtest_config.lldbExec, self.lldbOption)
)
child = self.child
if self.TraceOn():
child.logfile_read = sys.stdout
with self.stopwatch:
child.sendline("file %s" % exe)
child.expect_exact(prompt)
with self.stopwatch2:
child.sendline("breakpoint set %s" % break_spec)
child.expect_exact(prompt)
with self.stopwatch3:
child.sendline("run")
child.expect_exact(prompt)
child.sendline("quit")
try:
self.child.expect(pexpect.EOF)
except:
pass
self.child = None