summaryrefslogtreecommitdiff
path: root/test/testpy
diff options
context:
space:
mode:
Diffstat (limited to 'test/testpy')
-rw-r--r--test/testpy/__init__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/testpy/__init__.py b/test/testpy/__init__.py
index 0efabae02c..37e5ac710b 100644
--- a/test/testpy/__init__.py
+++ b/test/testpy/__init__.py
@@ -180,3 +180,15 @@ class AsyncHooksTestConfiguration(SimpleTestConfiguration):
for test in result:
test.parallel = True
return result
+
+class AbortTestConfiguration(SimpleTestConfiguration):
+ def __init__(self, context, root, section, additional=None):
+ super(AbortTestConfiguration, self).__init__(context, root, section,
+ additional)
+
+ def ListTests(self, current_path, path, arch, mode):
+ result = super(AbortTestConfiguration, self).ListTests(
+ current_path, path, arch, mode)
+ for test in result:
+ test.disable_core_files = True
+ return result