diff options
author | Zachary Turner <zturner@google.com> | 2015-12-09 20:48:31 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-09 20:48:31 +0000 |
commit | 6c9e44413f249378889df9a095f509117b484717 (patch) | |
tree | 7b98f9861ac9e5472d26f288021f9d1c259bf3e2 /lldb/packages/Python/lldbsuite/test/dotest.py | |
parent | d2a93fd6ca28b24ea897e067833aff0a7b1caadb (diff) | |
download | llvm-6c9e44413f249378889df9a095f509117b484717.zip llvm-6c9e44413f249378889df9a095f509117b484717.tar.gz llvm-6c9e44413f249378889df9a095f509117b484717.tar.bz2 |
Remove the -i command line option from dotest.py.
This is part of a larger effort to remove unused command line
options from dotest.py.
llvm-svn: 255151
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index 342f413..e2e96cc 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -321,9 +321,6 @@ def parseOptionsAndInitTestdirs(): # output-on-success. configuration.no_multiprocess_test_runner = True - if args.i: - configuration.ignore = True - if args.l: configuration.skip_long_running_test = False @@ -737,10 +734,6 @@ def setupSysPath(): print('Resources/Python/lldb/__init__.py was not found in ' + configuration.lldbFrameworkPath) sys.exit(-1) else: - # The '-i' option is used to skip looking for lldb.py in the build tree. - if configuration.ignore: - return - # If our lldb supports the -P option, use it to find the python path: init_in_python_dir = os.path.join('lldb', '__init__.py') |