<div dir="ltr">This breaks dotest.py --help, and many other command line options.<br><br>Would you mind fixing this?  I took a stab at it but it turns out to be a little more involved than I have time for.</div><br><div class="gmail_quote">On Mon, May 18, 2015 at 12:45 PM Vince Harron <<a href="mailto:vince@nethacker.com">vince@nethacker.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: vharron<br>
Date: Mon May 18 14:40:54 2015<br>
New Revision: 237602<br>
<br>
URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject-3Frev-3D237602-26view-3Drev&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=SBQPWTcg68yklSzX3ms_KAFT1WXPWthZwDTbSRil0Ks&s=DEqX3o5P7AGdW0hqTMHtOzqK21sq6F_KdXMjZUo0_EQ&e=" target="_blank">http://llvm.org/viewvc/llvm-project?rev=237602&view=rev</a><br>
Log:<br>
Refactored dotest arg parser so that it's accessible from dosep<br>
<br>
This allows dosep to understand an act on dotest arguments<br>
<br>
Differential Revision: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__reviews.llvm.org_D9820&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=SBQPWTcg68yklSzX3ms_KAFT1WXPWthZwDTbSRil0Ks&s=-MbZgRLhT0duXi8_g7zLcdRsoBLBXLnNOd5fdjoR3C8&e=" target="_blank">http://reviews.llvm.org/D9820</a><br>
<br>
<br>
Added:<br>
    lldb/trunk/test/dotest_args.py<br>
Modified:<br>
    lldb/trunk/test/dosep.py<br>
    lldb/trunk/test/dotest.py<br>
<br>
Modified: lldb/trunk/test/dosep.py<br>
URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject_lldb_trunk_test_dosep.py-3Frev-3D237602-26r1-3D237601-26r2-3D237602-26view-3Ddiff&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=SBQPWTcg68yklSzX3ms_KAFT1WXPWthZwDTbSRil0Ks&s=LW_hT5UxRmGPMIkRJfteH2d7A6QhVFfAXbSLdeHI41A&e=" target="_blank">http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dosep.py?rev=237602&r1=237601&r2=237602&view=diff</a><br>
==============================================================================<br>
--- lldb/trunk/test/dosep.py (original)<br>
+++ lldb/trunk/test/dosep.py Mon May 18 14:40:54 2015<br>
@@ -25,6 +25,7 @@ import multiprocessing<br>
 import os<br>
 import platform<br>
 import re<br>
+import dotest_args<br>
 import shlex<br>
 import subprocess<br>
 import sys<br>
@@ -152,16 +153,16 @@ def walk_and_invoke(test_directory, test<br>
<br>
     return (timed_out, failed, passed)<br>
<br>
-def getExpectedTimeouts(dotest_options):<br>
+def getExpectedTimeouts(platform_name):<br>
     # returns a set of test filenames that might timeout<br>
     # are we running against a remote target?<br>
-    m = re.search('\sremote-(\w+)', dotest_options)<br>
-    if m:<br>
-        target = m.group(1)<br>
-        remote = True<br>
-    else:<br>
+    if platform_name is None:<br>
         target = sys.platform<br>
         remote = False<br>
+    else:<br>
+        m = re.search('remote-(\w+)', platform_name)<br>
+        target = m.group(1)<br>
+        remote = True<br>
<br>
     expected_timeout = set()<br>
<br>
@@ -225,7 +226,10 @@ Run lldb test suite using a separate pro<br>
                       help="""The number of threads to use when running tests separately.""")<br>
<br>
     opts, args = parser.parse_args()<br>
-    dotest_options = opts.dotest_options<br>
+    dotest_option_string = opts.dotest_options<br>
+<br>
+    dotest_argv = shlex.split(dotest_option_string)<br>
+    dotest_options = dotest_args.getArguments(dotest_argv)<br>
<br>
     # The root directory was specified on the command line<br>
     if len(args) == 0:<br>
@@ -245,13 +249,13 @@ Run lldb test suite using a separate pro<br>
         num_threads = 1<br>
<br>
     system_info = " ".join(platform.uname())<br>
-    (timed_out, failed, passed) = walk_and_invoke(test_directory, test_subdir, dotest_options,<br>
+    (timed_out, failed, passed) = walk_and_invoke(test_directory, test_subdir, dotest_option_string,<br>
                                                   num_threads)<br>
     timed_out = set(timed_out)<br>
     num_tests = len(failed) + len(passed)<br>
<br>
     # remove expected timeouts from failures<br>
-    expected_timeout = getExpectedTimeouts(dotest_options)<br>
+    expected_timeout = getExpectedTimeouts(dotest_options.lldb_platform_name)<br>
     for xtime in expected_timeout:<br>
         if xtime in timed_out:<br>
             timed_out.remove(xtime)<br>
<br>
Modified: lldb/trunk/test/dotest.py<br>
URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject_lldb_trunk_test_dotest.py-3Frev-3D237602-26r1-3D237601-26r2-3D237602-26view-3Ddiff&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=SBQPWTcg68yklSzX3ms_KAFT1WXPWthZwDTbSRil0Ks&s=FJBWXQc0hoslzvWqn-CBlvvxGgbr580ojtpJzlltfww&e=" target="_blank">http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=237602&r1=237601&r2=237602&view=diff</a><br>
==============================================================================<br>
--- lldb/trunk/test/dotest.py (original)<br>
+++ lldb/trunk/test/dotest.py Mon May 18 14:40:54 2015<br>
@@ -22,6 +22,7 @@ for available options.<br>
<br>
 import commands<br>
 import os<br>
+import dotest_args<br>
 import errno<br>
 import platform<br>
 import progress<br>
@@ -34,26 +35,6 @@ import inspect<br>
 import unittest2<br>
 import lldbtest_config<br>
<br>
-if sys.version_info >= (2, 7):<br>
-    argparse = __import__('argparse')<br>
-else:<br>
-    argparse = __import__('argparse_compat')<br>
-<br>
-def parse_args(parser):<br>
-    """ Returns an argument object. LLDB_TEST_ARGUMENTS environment variable can<br>
-        be used to pass additional arguments if a compatible (>=2.7) argparse<br>
-        library is available.<br>
-    """<br>
-    if sys.version_info >= (2, 7):<br>
-        args = ArgParseNamespace()<br>
-<br>
-        if ('LLDB_TEST_ARGUMENTS' in os.environ):<br>
-            print "Arguments passed through environment: '%s'" % os.environ['LLDB_TEST_ARGUMENTS']<br>
-            args = parser.parse_args([sys.argv[0]].__add__(os.environ['LLDB_TEST_ARGUMENTS'].split()),namespace=args)<br>
-<br>
-        return parser.parse_args(namespace=args)<br>
-    else:<br>
-        return parser.parse_args()<br>
<br>
 def is_exe(fpath):<br>
     """Returns true if fpath is an executable."""<br>
@@ -388,9 +369,6 @@ def unique_string_match(yourentry,list):<br>
                        candidate = item<br>
        return candidate<br>
<br>
-class ArgParseNamespace(object):<br>
-    pass<br>
-<br>
 def validate_categories(categories):<br>
     """For each category in categories, ensure that it's a valid category (or a prefix thereof).<br>
        If a category is invalid, print a message and quit.<br>
@@ -513,93 +491,7 @@ def parseOptionsAndInitTestdirs():<br>
     platform_system = platform.system()<br>
     platform_machine = platform.machine()<br>
<br>
-    parser = argparse.ArgumentParser(description='description', prefix_chars='+-', add_help=False)<br>
-    group = None<br>
-<br>
-    # Helper function for boolean options (group will point to the current group when executing X)<br>
-    X = lambda optstr, helpstr, **kwargs: group.add_argument(optstr, help=helpstr, action='store_true', **kwargs)<br>
-<br>
-    group = parser.add_argument_group('Help')<br>
-    group.add_argument('-h', '--help', dest='h', action='store_true', help="Print this help message and exit.  Add '-v' for more detailed help.")<br>
-<br>
-    # C and Python toolchain options<br>
-    group = parser.add_argument_group('Toolchain options')<br>
-    group.add_argument('-A', '--arch', metavar='arch', action='append', dest='archs', help=textwrap.dedent('''Specify the architecture(s) to test. This option can be specified more than once'''))<br>
-    group.add_argument('-C', '--compiler', metavar='compiler', dest='compilers', action='append', help=textwrap.dedent('''Specify the compiler(s) used to build the inferior executables. The compiler path can be an executable basename or a full path to a compiler executable. This option can be specified multiple times.'''))<br>
-    if platform_system == 'Darwin':<br>
-        group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', help=textwrap.dedent('''Specify the name of the Apple SDK (macosx, macosx.internal, iphoneos, iphoneos.internal, or path to SDK) and use the appropriate tools from that SDK's toolchain.'''))<br>
-    # FIXME? This won't work for different extra flags according to each arch.<br>
-    group.add_argument('-E', metavar='extra-flags', help=textwrap.dedent('''Specify the extra flags to be passed to the toolchain when building the inferior programs to be debugged<br>
-                                                           suggestions: do not lump the "-A arch1 -A arch2" together such that the -E option applies to only one of the architectures'''))<br>
-    X('-D', 'Dump the Python sys.path variable')<br>
-<br>
-    # Test filtering options<br>
-    group = parser.add_argument_group('Test filtering options')<br>
-    group.add_argument('-N', choices=['dwarf', 'dsym'], help="Don't do test cases marked with the @dsym decorator by passing 'dsym' as the option arg, or don't do test cases marked with the @dwarf decorator by passing 'dwarf' as the option arg")<br>
-    X('-a', "Don't do lldb Python API tests")<br>
-    X('+a', "Just do lldb Python API tests. Do not specify along with '-a'", dest='plus_a')<br>
-    X('+b', 'Just do benchmark tests', dest='plus_b')<br>
-    group.add_argument('-b', metavar='blacklist', help='Read a blacklist file specified after this option')<br>
-    group.add_argument('-f', metavar='filterspec', action='append', help='Specify a filter, which consists of the test class name, a dot, followed by the test method, to only admit such test into the test suite')  # FIXME: Example?<br>
-    X('-g', 'If specified, the filterspec by -f is not exclusive, i.e., if a test module does not match the filterspec (testclass.testmethod), the whole module is still admitted to the test suite')<br>
-    X('-l', "Don't skip long running tests")<br>
-    X('-m', "Don't do lldb-mi tests")<br>
-    X('+m', "Just do lldb-mi tests. Do not specify along with '-m'", dest='plus_m')<br>
-    group.add_argument('-p', metavar='pattern', help='Specify a regexp filename pattern for inclusion in the test suite')<br>
-    group.add_argument('-X', metavar='directory', help="Exclude a directory from consideration for test discovery. -X types => if 'types' appear in the pathname components of a potential testfile, it will be ignored")<br>
-    group.add_argument('-G', '--category', metavar='category', action='append', dest='categoriesList', help=textwrap.dedent('''Specify categories of test cases of interest. Can be specified more than once.'''))<br>
-    group.add_argument('--skip-category', metavar='category', action='append', dest='skipCategories', help=textwrap.dedent('''Specify categories of test cases to skip. Takes precedence over -G. Can be specified more than once.'''))<br>
-<br>
-    # Configuration options<br>
-    group = parser.add_argument_group('Configuration options')<br>
-    group.add_argument('-c', metavar='config-file', help='Read a config file specified after this option')  # FIXME: additional doc.<br>
-    group.add_argument('--framework', metavar='framework-path', help='The path to LLDB.framework')<br>
-    group.add_argument('--executable', metavar='executable-path', help='The path to the lldb executable')<br>
-    group.add_argument('--libcxx', metavar='directory', help='The path to custom libc++ library')<br>
-    group.add_argument('-e', metavar='benchmark-exe', help='Specify the full path of an executable used for benchmark purposes (see also: -x)')<br>
-    group.add_argument('-k', metavar='command', action='append', help="Specify a runhook, which is an lldb command to be executed by the debugger; The option can occur multiple times. The commands are executed one after the other to bring the debugger to a desired state, so that, for example, further benchmarking can be done")<br>
-    group.add_argument('-R', metavar='dir', help='Specify a directory to relocate the tests and their intermediate files to. BE WARNED THAT the directory, if exists, will be deleted before running this test driver. No cleanup of intermediate test files is performed in this case')<br>
-    group.add_argument('-r', metavar='dir', help="Similar to '-R', except that the directory must not exist before running this test driver")<br>
-    group.add_argument('-s', metavar='name', help='Specify the name of the dir created to store the session files of tests with errored or failed status. If not specified, the test driver uses the timestamp as the session dir name')<br>
-    group.add_argument('-x', metavar='breakpoint-spec', help='Specify the breakpoint specification for the benchmark executable')<br>
-    group.add_argument('-y', type=int, metavar='count', help="Specify the iteration count used to collect our benchmarks. An example is the number of times to do 'thread step-over' to measure stepping speed.")<br>
-    group.add_argument('-#', type=int, metavar='sharp', dest='sharp', help='Repeat the test suite for a specified number of times')<br>
-    group.add_argument('--channel', metavar='channel', dest='channels', action='append', help=textwrap.dedent("Specify the log channels (and optional categories) e.g. 'lldb all' or 'gdb-remote packets' if no categories are specified, 'default' is used"))<br>
-    group.add_argument('--log-success', dest='log_success', action='store_true', help="Leave logs/traces even for successful test runs (useful for creating reference log files during debugging.)")<br>
-<br>
-    # Configuration options<br>
-    group = parser.add_argument_group('Remote platform options')<br>
-    group.add_argument('--platform-name', dest='lldb_platform_name', metavar='platform-name', help='The name of a remote platform to use')<br>
-    group.add_argument('--platform-url', dest='lldb_platform_url', metavar='platform-url', help='A LLDB platform URL to use when connecting to a remote platform to run the test suite')<br>
-    group.add_argument('--platform-working-dir', dest='lldb_platform_working_dir', metavar='platform-working-dir', help='The directory to use on the remote platform.')<br>
-<br>
-    # Test-suite behaviour<br>
-    group = parser.add_argument_group('Runtime behaviour options')<br>
-    X('-d', 'Suspend the process after launch to wait indefinitely for a debugger to attach')<br>
-    X('-F', 'Fail fast. Stop the test suite on the first error/failure')<br>
-    X('-i', "Ignore (don't bailout) if 'lldb.py' module cannot be located in the build tree relative to this script; use PYTHONPATH to locate the module")<br>
-    X('-n', "Don't print the headers like build dir, lldb version, and svn info at all")<br>
-    X('-P', "Use the graphic progress bar.")<br>
-    X('-q', "Don't print extra output from this script.")<br>
-    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")<br>
-    X('-t', 'Turn on tracing of lldb command and other detailed test executions')<br>
-    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')<br>
-    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')<br>
-    X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)')<br>
-    X('-w', 'Insert some wait time (currently 0.5 sec) between consecutive test cases')<br>
-    X('-T', 'Obtain and dump svn information for this checkout of LLDB (off by default)')<br>
-    group.add_argument('--enable-crash-dialog', dest='disable_crash_dialog', action='store_false', help='(Windows only) When LLDB crashes, display the Windows crash dialog.')<br>
-    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.')<br>
-    group.set_defaults(disable_crash_dialog=True)<br>
-    group.set_defaults(hide_inferior_console=True)<br>
-<br>
-    # Remove the reference to our helper function<br>
-    del X<br>
-<br>
-    group = parser.add_argument_group('Test directories')<br>
-    group.add_argument('args', metavar='test-dir', nargs='*', help='Specify a list of directory names to search for test modules named after Test*.py (test discovery). If empty, search from the current working directory instead.')<br>
-<br>
-    args = parse_args(parser)<br>
+    args = dotest_args.getArguments(sys.argv[1:])<br>
<br>
     if args.unset_env_varnames:<br>
         for env_var in args.unset_env_varnames:<br>
<br>
Added: lldb/trunk/test/dotest_args.py<br>
URL: <a href="https://urldefense.proofpoint.com/v2/url?u=http-3A__llvm.org_viewvc_llvm-2Dproject_lldb_trunk_test_dotest-5Fargs.py-3Frev-3D237602-26view-3Dauto&d=AwMFaQ&c=8hUWFZcy2Z-Za5rBPlktOQ&r=MEqT8U_n7oNfuDW5NRbY3ZV384ZquXIYFPWmprwUdKM&m=SBQPWTcg68yklSzX3ms_KAFT1WXPWthZwDTbSRil0Ks&s=fG9_bgNRup7HvRslYX5Oncg05dNT9fJYwrCQ9s77lQo&e=" target="_blank">http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest_args.py?rev=237602&view=auto</a><br>
==============================================================================<br>
--- lldb/trunk/test/dotest_args.py (added)<br>
+++ lldb/trunk/test/dotest_args.py Mon May 18 14:40:54 2015<br>
@@ -0,0 +1,117 @@<br>
+import sys<br>
+import os<br>
+import textwrap<br>
+<br>
+if sys.version_info >= (2, 7):<br>
+    argparse = __import__('argparse')<br>
+else:<br>
+    argparse = __import__('argparse_compat')<br>
+<br>
+class ArgParseNamespace(object):<br>
+    pass<br>
+<br>
+def parse_args(parser, argv):<br>
+    """ Returns an argument object. LLDB_TEST_ARGUMENTS environment variable can<br>
+        be used to pass additional arguments if a compatible (>=2.7) argparse<br>
+        library is available.<br>
+    """<br>
+    if sys.version_info >= (2, 7):<br>
+        args = ArgParseNamespace()<br>
+<br>
+        if ('LLDB_TEST_ARGUMENTS' in os.environ):<br>
+            print "Arguments passed through environment: '%s'" % os.environ['LLDB_TEST_ARGUMENTS']<br>
+            args = parser.parse_args([sys.argv[0]].__add__(os.environ['LLDB_TEST_ARGUMENTS'].split()),namespace=args)<br>
+<br>
+        return parser.parse_args(args=argv, namespace=args)<br>
+    else:<br>
+        return parser.parse_args(args=argv)<br>
+<br>
+def getArguments(argv):<br>
+<br>
+    parser = argparse.ArgumentParser(description='description', prefix_chars='+-', add_help=False)<br>
+    group = None<br>
+<br>
+    # Helper function for boolean options (group will point to the current group when executing X)<br>
+    X = lambda optstr, helpstr, **kwargs: group.add_argument(optstr, help=helpstr, action='store_true', **kwargs)<br>
+<br>
+    group = parser.add_argument_group('Help')<br>
+    group.add_argument('-h', '--help', dest='h', action='store_true', help="Print this help message and exit.  Add '-v' for more detailed help.")<br>
+<br>
+    # C and Python toolchain options<br>
+    group = parser.add_argument_group('Toolchain options')<br>
+    group.add_argument('-A', '--arch', metavar='arch', action='append', dest='archs', help=textwrap.dedent('''Specify the architecture(s) to test. This option can be specified more than once'''))<br>
+    group.add_argument('-C', '--compiler', metavar='compiler', dest='compilers', action='append', help=textwrap.dedent('''Specify the compiler(s) used to build the inferior executables. The compiler path can be an executable basename or a full path to a compiler executable. This option can be specified multiple times.'''))<br>
+    if sys.platform == 'darwin':<br>
+        group.add_argument('--apple-sdk', metavar='apple_sdk', dest='apple_sdk', help=textwrap.dedent('''Specify the name of the Apple SDK (macosx, macosx.internal, iphoneos, iphoneos.internal, or path to SDK) and use the appropriate tools from that SDK's toolchain.'''))<br>
+    # FIXME? This won't work for different extra flags according to each arch.<br>
+    group.add_argument('-E', metavar='extra-flags', help=textwrap.dedent('''Specify the extra flags to be passed to the toolchain when building the inferior programs to be debugged<br>
+                                                           suggestions: do not lump the "-A arch1 -A arch2" together such that the -E option applies to only one of the architectures'''))<br>
+    X('-D', 'Dump the Python sys.path variable')<br>
+<br>
+    # Test filtering options<br>
+    group = parser.add_argument_group('Test filtering options')<br>
+    group.add_argument('-N', choices=['dwarf', 'dsym'], help="Don't do test cases marked with the @dsym decorator by passing 'dsym' as the option arg, or don't do test cases marked with the @dwarf decorator by passing 'dwarf' as the option arg")<br>
+    X('-a', "Don't do lldb Python API tests")<br>
+    X('+a', "Just do lldb Python API tests. Do not specify along with '-a'", dest='plus_a')<br>
+    X('+b', 'Just do benchmark tests', dest='plus_b')<br>
+    group.add_argument('-b', metavar='blacklist', help='Read a blacklist file specified after this option')<br>
+    group.add_argument('-f', metavar='filterspec', action='append', help='Specify a filter, which consists of the test class name, a dot, followed by the test method, to only admit such test into the test suite')  # FIXME: Example?<br>
+    X('-g', 'If specified, the filterspec by -f is not exclusive, i.e., if a test module does not match the filterspec (testclass.testmethod), the whole module is still admitted to the test suite')<br>
+    X('-l', "Don't skip long running tests")<br>
+    X('-m', "Don't do lldb-mi tests")<br>
+    X('+m', "Just do lldb-mi tests. Do not specify along with '-m'", dest='plus_m')<br>
+    group.add_argument('-p', metavar='pattern', help='Specify a regexp filename pattern for inclusion in the test suite')<br>
+    group.add_argument('-X', metavar='directory', help="Exclude a directory from consideration for test discovery. -X types => if 'types' appear in the pathname components of a potential testfile, it will be ignored")<br>
+    group.add_argument('-G', '--category', metavar='category', action='append', dest='categoriesList', help=textwrap.dedent('''Specify categories of test cases of interest. Can be specified more than once.'''))<br>
+    group.add_argument('--skip-category', metavar='category', action='append', dest='skipCategories', help=textwrap.dedent('''Specify categories of test cases to skip. Takes precedence over -G. Can be specified more than once.'''))<br>
+<br>
+    # Configuration options<br>
+    group = parser.add_argument_group('Configuration options')<br>
+    group.add_argument('-c', metavar='config-file', help='Read a config file specified after this option')  # FIXME: additional doc.<br>
+    group.add_argument('--framework', metavar='framework-path', help='The path to LLDB.framework')<br>
+    group.add_argument('--executable', metavar='executable-path', help='The path to the lldb executable')<br>
+    group.add_argument('--libcxx', metavar='directory', help='The path to custom libc++ library')<br>
+    group.add_argument('-e', metavar='benchmark-exe', help='Specify the full path of an executable used for benchmark purposes (see also: -x)')<br>
+    group.add_argument('-k', metavar='command', action='append', help="Specify a runhook, which is an lldb command to be executed by the debugger; The option can occur multiple times. The commands are executed one after the other to bring the debugger to a desired state, so that, for example, further benchmarking can be done")<br>
+    group.add_argument('-R', metavar='dir', help='Specify a directory to relocate the tests and their intermediate files to. BE WARNED THAT the directory, if exists, will be deleted before running this test driver. No cleanup of intermediate test files is performed in this case')<br>
+    group.add_argument('-r', metavar='dir', help="Similar to '-R', except that the directory must not exist before running this test driver")<br>
+    group.add_argument('-s', metavar='name', help='Specify the name of the dir created to store the session files of tests with errored or failed status. If not specified, the test driver uses the timestamp as the session dir name')<br>
+    group.add_argument('-x', metavar='breakpoint-spec', help='Specify the breakpoint specification for the benchmark executable')<br>
+    group.add_argument('-y', type=int, metavar='count', help="Specify the iteration count used to collect our benchmarks. An example is the number of times to do 'thread step-over' to measure stepping speed.")<br>
+    group.add_argument('-#', type=int, metavar='sharp', dest='sharp', help='Repeat the test suite for a specified number of times')<br>
+    group.add_argument('--channel', metavar='channel', dest='channels', action='append', help=textwrap.dedent("Specify the log channels (and optional categories) e.g. 'lldb all' or 'gdb-remote packets' if no categories are specified, 'default' is used"))<br>
+    group.add_argument('--log-success', dest='log_success', action='store_true', help="Leave logs/traces even for successful test runs (useful for creating reference log files during debugging.)")<br>
+<br>
+    # Configuration options<br>
+    group = parser.add_argument_group('Remote platform options')<br>
+    group.add_argument('--platform-name', dest='lldb_platform_name', metavar='platform-name', help='The name of a remote platform to use')<br>
+    group.add_argument('--platform-url', dest='lldb_platform_url', metavar='platform-url', help='A LLDB platform URL to use when connecting to a remote platform to run the test suite')<br>
+    group.add_argument('--platform-working-dir', dest='lldb_platform_working_dir', metavar='platform-working-dir', help='The directory to use on the remote platform.')<br>
+<br>
+    # Test-suite behaviour<br>
+    group = parser.add_argument_group('Runtime behaviour options')<br>
+    X('-d', 'Suspend the process after launch to wait indefinitely for a debugger to attach')<br>
+    X('-F', 'Fail fast. Stop the test suite on the first error/failure')<br>
+    X('-i', "Ignore (don't bailout) if 'lldb.py' module cannot be located in the build tree relative to this script; use PYTHONPATH to locate the module")<br>
+    X('-n', "Don't print the headers like build dir, lldb version, and svn info at all")<br>
+    X('-P', "Use the graphic progress bar.")<br>
+    X('-q', "Don't print extra output from this script.")<br>
+    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")<br>
+    X('-t', 'Turn on tracing of lldb command and other detailed test executions')<br>
+    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')<br>
+    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')<br>
+    X('-v', 'Do verbose mode of unittest framework (print out each test case invocation)')<br>
+    X('-w', 'Insert some wait time (currently 0.5 sec) between consecutive test cases')<br>
+    X('-T', 'Obtain and dump svn information for this checkout of LLDB (off by default)')<br>
+    group.add_argument('--enable-crash-dialog', dest='disable_crash_dialog', action='store_false', help='(Windows only) When LLDB crashes, display the Windows crash dialog.')<br>
+    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.')<br>
+    group.set_defaults(disable_crash_dialog=True)<br>
+    group.set_defaults(hide_inferior_console=True)<br>
+<br>
+    # Remove the reference to our helper function<br>
+    del X<br>
+<br>
+    group = parser.add_argument_group('Test directories')<br>
+    group.add_argument('args', metavar='test-dir', nargs='*', help='Specify a list of directory names to search for test modules named after Test*.py (test discovery). If empty, search from the current working directory instead.')<br>
+<br>
+    return parse_args(parser, argv)<br>
<br>
<br>
_______________________________________________<br>
lldb-commits mailing list<br>
<a href="mailto:lldb-commits@cs.uiuc.edu" target="_blank">lldb-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits</a><br>
</blockquote></div>