diff options
author | Zachary Turner <zturner@google.com> | 2015-12-11 19:21:49 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-11 19:21:49 +0000 |
commit | 742afdb3d285d579e10fe6cde67f21bdb661d862 (patch) | |
tree | 40140076d0ed56462efe1260cb37a277582a32fa /lldb/packages/Python/lldbsuite/test/dotest_args.py | |
parent | 6a188e6c1e89a2e55905c7b8615ca3dc53754fa2 (diff) | |
download | bcm5719-llvm-742afdb3d285d579e10fe6cde67f21bdb661d862.tar.gz bcm5719-llvm-742afdb3d285d579e10fe6cde67f21bdb661d862.zip |
Remove -S option from dotest.py.
llvm-svn: 255361
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest_args.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest_args.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest_args.py b/lldb/packages/Python/lldbsuite/test/dotest_args.py index 064ae776ffb..ddb615ef5df 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest_args.py +++ b/lldb/packages/Python/lldbsuite/test/dotest_args.py @@ -86,7 +86,6 @@ def create_parser(): group = parser.add_argument_group('Runtime behaviour options') X('-d', 'Suspend the process after launch to wait indefinitely for a debugger to attach') X('-q', "Don't print extra output from this script.") - X('-S', "Skip the build and cleanup while running the test. Use this option with care as you would need to build the inferior(s) by hand and build the executable(s) with the correct name(s). This can be used with '-# n' to stress test certain test cases for n number of times") X('-t', 'Turn on tracing of lldb command and other detailed test executions') 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') |