diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py b/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py index b2d471c3628..d0532cd5eb5 100644 --- a/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py +++ b/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py @@ -22,10 +22,7 @@ class StartupDelaysBench(BenchBase): # Create self.stopwatch3 for measuring "run to breakpoint". self.stopwatch3 = Stopwatch() self.exe = lldbtest_config.lldbExec - if configuration.bmBreakpointSpec: - self.break_spec = configuration.bmBreakpointSpec - else: - self.break_spec = '-n main' + self.break_spec = '-n main' self.count = configuration.bmIterationCount if self.count <= 0: |