diff options
author | Zachary Turner <zturner@google.com> | 2015-12-10 18:50:32 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-10 18:50:32 +0000 |
commit | b08ab7242759d4f539b6bcd33e69133bf83a3933 (patch) | |
tree | cd9e894d87f77a338a2f328594298538dd2107f8 /lldb/packages/Python/lldbsuite/test/lldbtest.py | |
parent | 5cd12580fd78137f9c422f148e9c02de78ce4303 (diff) | |
download | bcm5719-llvm-b08ab7242759d4f539b6bcd33e69133bf83a3933.tar.gz bcm5719-llvm-b08ab7242759d4f539b6bcd33e69133bf83a3933.zip |
Remove -w option from dotest.py.
llvm-svn: 255275
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"]) |