diff options
author | Zachary Turner <zturner@google.com> | 2015-12-09 20:48:19 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-09 20:48:19 +0000 |
commit | d2a93fd6ca28b24ea897e067833aff0a7b1caadb (patch) | |
tree | b937a3e281c2e6919089eac157efcb65ac4484eb /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | 9edc3b8403e69e30c6ccba87a32140b8f4b87bf2 (diff) | |
download | bcm5719-llvm-d2a93fd6ca28b24ea897e067833aff0a7b1caadb.tar.gz bcm5719-llvm-d2a93fd6ca28b24ea897e067833aff0a7b1caadb.zip |
Delete the -F command line option from dotest.py.
This removes the failfast command line option as part of an effort
to simplify dotest and remove unused command line options. You can
still Ctrl+C any time you want to exit early.
llvm-svn: 255150
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 5ba9a46fc0d..342f4135448 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -305,9 +305,6 @@ def parseOptionsAndInitTestdirs(): sys.stdout.flush() os.kill(os.getpid(), signal.SIGSTOP) - if args.F: - configuration.failfast = True - if args.f: if any([x.startswith('-') for x in args.f]): usage(parser) @@ -1265,7 +1262,6 @@ def run_suite(): if configuration.count == 1: result = unittest2.TextTestRunner(stream=sys.stderr, verbosity=v, - failfast=configuration.failfast, resultclass=test_result.LLDBTestResult).run(configuration.suite) else: # We are invoking the same test suite more than once. In this case, @@ -1276,7 +1272,6 @@ def run_suite(): result = unittest2.TextTestRunner(stream=sys.stderr, verbosity=v, - failfast=configuration.failfast, resultclass=test_result.LLDBTestResult).run(configuration.suite) configuration.failed = configuration.failed or not result.wasSuccessful() |