diff options
author | Francis Ricci <francisjricci@gmail.com> | 2016-10-04 18:48:00 +0000 |
---|---|---|
committer | Francis Ricci <francisjricci@gmail.com> | 2016-10-04 18:48:00 +0000 |
commit | f833f173fbca19275d3cb36b96d1f7461c0a8fee (patch) | |
tree | dd412624b13931e47c3e8d6bddb18d9382bd1935 /lldb/packages/Python/lldbsuite/test/configuration.py | |
parent | fa262c98f8bb0618ed500b261e6098c63c93bfc6 (diff) | |
download | bcm5719-llvm-f833f173fbca19275d3cb36b96d1f7461c0a8fee.tar.gz bcm5719-llvm-f833f173fbca19275d3cb36b96d1f7461c0a8fee.zip |
Improvements to testing blacklist
Summary:
This patch is necessary because individual test cases are not required
to have unique names. Therefore, test cases must now
be specified explicitly in the form <TestCase>.<TestMethod>.
Because it works by regex matching, passing just <TestCase> will
still disable an entire file.
This also allows for multiple exclusion files to be specified.
Reviewers: zturner, labath, jingham, tfiala
Subscribers: lldb-commits, sas
Differential Revision: https://reviews.llvm.org/D24988
llvm-svn: 283238
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/configuration.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/configuration.py b/lldb/packages/Python/lldbsuite/test/configuration.py index 37fa87563e7..a0553a72c19 100644 --- a/lldb/packages/Python/lldbsuite/test/configuration.py +++ b/lldb/packages/Python/lldbsuite/test/configuration.py @@ -102,10 +102,8 @@ parsable = False regexp = None # Sets of tests which are excluded at runtime -skip_files = None -skip_methods = None -xfail_files = None -xfail_methods = None +skip_tests = None +xfail_tests = 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 |