From 34b02fde809bca37c76630986c08ea910c547a69 Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Thu, 5 Mar 2020 11:28:22 -0800 Subject: Add a simple mechanism to skip tests on targets. (#251) --- debug/targets.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'debug/targets.py') diff --git a/debug/targets.py b/debug/targets.py index d797f64..f4192b6 100644 --- a/debug/targets.py +++ b/debug/targets.py @@ -84,6 +84,13 @@ class Target: # Supports simultaneous resume through hasel. support_hasel = True + # Tests whose names are mentioned in this list will be skipped and marked + # as not applicable. This is a crude mechanism that can be handy, but in + # general it's better to define some property like those above that + # describe behavior of this target, and tests can use that to decide + # whether they are applicable or not. + skip_tests = [] + # Internal variables: directory = None temporary_files = [] -- cgit v1.1