summaryrefslogtreecommitdiff
path: root/testsuite/driver/testglobals.py
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/driver/testglobals.py')
-rw-r--r--testsuite/driver/testglobals.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/driver/testglobals.py b/testsuite/driver/testglobals.py
index adf4112ca6..ceee5df9a8 100644
--- a/testsuite/driver/testglobals.py
+++ b/testsuite/driver/testglobals.py
@@ -153,6 +153,10 @@ class TestConfig:
self.threads = 1
self.use_threads = False
+ # tests which should be considered to be broken during this testsuite
+ # run.
+ self.broken_tests = set() # type: Set[TestName]
+
# Should we skip performance tests
self.skip_perf_tests = False
@@ -399,6 +403,7 @@ class TestOptions:
global default_testopts
default_testopts = TestOptions()
-# (bug, directory, name) of tests marked broken
+# (bug, directory, name) of tests marked broken. Used by config.list_broken
+# feature.
global brokens
brokens = [] # type: List[Tuple[IssueNumber, str, str]]