diff options
author | Zachary Turner <zturner@google.com> | 2015-12-08 22:15:48 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-12-08 22:15:48 +0000 |
commit | d865c6b70770d44b1b5e9230299d1597cda6422f (patch) | |
tree | 0ee7104229e0e3f48c1ca92cf17a5a17d558aa87 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | 6b63d576c3baef27ca053dd18625e6e47acd2ae0 (diff) | |
download | bcm5719-llvm-d865c6b70770d44b1b5e9230299d1597cda6422f.tar.gz bcm5719-llvm-d865c6b70770d44b1b5e9230299d1597cda6422f.zip |
Remove the -c option from dotest.py.
This seems to be a legacy relic from days gone by where the
remote test suite runner operated completely differently than it
does today. git blames and comments traced this functionality
back to about 2012, and nobody seems to know anything about it
now.
llvm-svn: 255060
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 2ef0cacc99c..aced15add2b 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -72,26 +72,12 @@ failuresPerCategory = {} # The path to LLDB.framework is optional. lldbFrameworkPath = None -# The config file is optional. -configFile = None - # Test suite repeat count. Can be overwritten with '-# count'. count = 1 -# The dictionary as a result of sourcing configFile. -config = {} -# The pre_flight and post_flight functions come from reading a config file. -pre_flight = None -post_flight = None -# So do the lldbtest_remote_sandbox and lldbtest_remote_shell_template variables. -test_remote = False -lldbtest_remote_sandbox = None -lldbtest_remote_shell_template = None - -# The 'archs' and 'compilers' can be specified via either command line or configFile, -# with the command line overriding the configFile. The corresponding options can be -# specified more than once. For example, "-A x86_64 -A i386" => archs=['x86_64', 'i386'] -# and "-C gcc -C clang" => compilers=['gcc', 'clang']. +# The 'archs' and 'compilers' can be specified via command line. The corresponding +# options can be specified more than once. For example, "-A x86_64 -A i386" +# => archs=['x86_64', 'i386'] and "-C gcc -C clang" => compilers=['gcc', 'clang']. archs = None # Must be initialized after option parsing compilers = None # Must be initialized after option parsing |