summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/configuration.py
diff options
context:
space:
mode:
authorFrancis Ricci <francisjricci@gmail.com>2016-09-23 21:32:47 +0000
committerFrancis Ricci <francisjricci@gmail.com>2016-09-23 21:32:47 +0000
commit6951707943c771422c4e22ee8b7cd653642272ce (patch)
treeecf078549a7a0299badf57741d893e8822026990 /lldb/packages/Python/lldbsuite/test/configuration.py
parent497ef1772f24b1c137ce8936ef9e0875aff4dc72 (diff)
downloadbcm5719-llvm-6951707943c771422c4e22ee8b7cd653642272ce.tar.gz
bcm5719-llvm-6951707943c771422c4e22ee8b7cd653642272ce.zip
Allow for tests to be disabled at runtime
Summary: The current implementation of the test suite allows the user to run a certain subset of tests using '-p', but does not allow the inverse, where a user wants to run all but some number of known failing tests. Implement this functionality. Reviewers: labath, zturner, tfiala Subscribers: jingham, sas, lldb-commits Differential Revision: https://reviews.llvm.org/D24629 llvm-svn: 282298
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/configuration.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py
index ff061782d47..37fa87563e7 100644
--- a/lldb/packages/Python/lldbsuite/test/configuration.py
+++ b/lldb/packages/Python/lldbsuite/test/configuration.py
@@ -101,6 +101,12 @@ parsable = False
# our test cases.
regexp = None
+# Sets of tests which are excluded at runtime
+skip_files = None
+skip_methods = None
+xfail_files = None
+xfail_methods = None
+
# By default, recorded session info for errored/failed test are dumped into its
# own file under a session directory named after the timestamp of the test suite
# run. Use '-s session-dir-name' to specify a specific dir name.
OpenPOWER on IntegriCloud