diff --git a/test/async-hooks/testcfg.py b/test/async-hooks/testcfg.py index 9f75273938ee23..79e8c6834eb399 100644 --- a/test/async-hooks/testcfg.py +++ b/test/async-hooks/testcfg.py @@ -3,4 +3,4 @@ import testpy def GetConfiguration(context, root): - return testpy.AsyncHooksTestConfiguration(context, root, 'async-hooks') + return testpy.ParallelTestConfiguration(context, root, 'async-hooks') diff --git a/test/testpy/__init__.py b/test/testpy/__init__.py index 455d57f4d9157a..8b5b2f6b48f09f 100644 --- a/test/testpy/__init__.py +++ b/test/testpy/__init__.py @@ -165,18 +165,6 @@ def ListTests(self, current_path, path, arch, mode): SimpleTestCase(test, file_path, arch, mode, self.context, self, self.additional_flags)) return result -class AsyncHooksTestConfiguration(SimpleTestConfiguration): - def __init__(self, context, root, section, additional=None): - super(AsyncHooksTestConfiguration, self).__init__(context, root, section, - additional) - - def ListTests(self, current_path, path, arch, mode): - result = super(AsyncHooksTestConfiguration, self).ListTests( - current_path, path, arch, mode) - 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,