Author: zturner Date: Thu Dec 10 12:50:32 2015 New Revision: 255275 URL: http://llvm.org/viewvc/llvm-project?rev=255275&view=rev Log: Remove -w option from dotest.py.
Modified: lldb/trunk/packages/Python/lldbsuite/test/dotest.py lldb/trunk/packages/Python/lldbsuite/test/dotest_args.py lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py Modified: lldb/trunk/packages/Python/lldbsuite/test/dotest.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/dotest.py?rev=255275&r1=255274&r2=255275&view=diff ============================================================================== --- lldb/trunk/packages/Python/lldbsuite/test/dotest.py (original) +++ lldb/trunk/packages/Python/lldbsuite/test/dotest.py Thu Dec 10 12:50:32 2015 @@ -371,9 +371,6 @@ def parseOptionsAndInitTestdirs(): if args.v: configuration.verbose = 2 - if args.w: - os.environ['LLDB_WAIT_BETWEEN_TEST_CASES'] = 'YES' - if args.x: if args.x.startswith('-'): usage(parser) Modified: lldb/trunk/packages/Python/lldbsuite/test/dotest_args.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/dotest_args.py?rev=255275&r1=255274&r2=255275&view=diff ============================================================================== --- lldb/trunk/packages/Python/lldbsuite/test/dotest_args.py (original) +++ lldb/trunk/packages/Python/lldbsuite/test/dotest_args.py Thu Dec 10 12:50:32 2015 @@ -94,7 +94,6 @@ def create_parser(): group.add_argument('-u', dest='unset_env_varnames', metavar='variable', action='append', help='Specify an environment variable to unset before running the test cases. e.g., -u DYLD_INSERT_LIBRARIES -u MallocScribble') group.add_argument('--env', dest='set_env_vars', metavar='variable', action='append', help='Specify an environment variable to set to the given value before running the test cases e.g.: --env CXXFLAGS=-O3 --env DYLD_INSERT_LIBRARIES') X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)') - X('-w', 'Insert some wait time (currently 0.5 sec) between consecutive test cases') X('-T', 'Obtain and dump svn information for this checkout of LLDB (off by default)') group.add_argument('--enable-crash-dialog', dest='disable_crash_dialog', action='store_false', help='(Windows only) When LLDB crashes, display the Windows crash dialog.') group.add_argument('--show-inferior-console', dest='hide_inferior_console', action='store_false', help='(Windows only) When launching an inferior, dont hide its console window.') Modified: lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py?rev=255275&r1=255274&r2=255275&view=diff ============================================================================== --- lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py (original) +++ lldb/trunk/packages/Python/lldbsuite/test/lldbtest.py Thu Dec 10 12:50:32 2015 @@ -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"]) _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits