diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 23ad251a855..e1403c1902e 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -2358,15 +2358,6 @@ class TestBase(Base): # Can be overridden by the LLDB_TIME_WAIT_NEXT_LAUNCH environment variable. timeWaitNextLaunch = 1.0; - def doDelay(self): - """See option -w of dotest.py.""" - if ("LLDB_WAIT_BETWEEN_TEST_CASES" in os.environ and - os.environ["LLDB_WAIT_BETWEEN_TEST_CASES"] == 'YES'): - waitTime = 1.0 - if "LLDB_TIME_WAIT_BETWEEN_TEST_CASES" in os.environ: - waitTime = float(os.environ["LLDB_TIME_WAIT_BETWEEN_TEST_CASES"]) - time.sleep(waitTime) - # Returns the list of categories to which this test case belongs # by default, look for a ".categories" file, and read its contents # if no such file exists, traverse the hierarchy - we guarantee @@ -2398,9 +2389,6 @@ class TestBase(Base): # Works with the test driver to conditionally skip tests via decorators. Base.setUp(self) - # Insert some delay between successive test cases if specified. - self.doDelay() - if "LLDB_MAX_LAUNCH_COUNT" in os.environ: self.maxLaunchCount = int(os.environ["LLDB_MAX_LAUNCH_COUNT"]) |