Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/async-hooks/testcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
import testpy

def GetConfiguration(context, root):
return testpy.AsyncHooksTestConfiguration(context, root, 'async-hooks')
return testpy.ParallelTestConfiguration(context, root, 'async-hooks')
12 changes: 0 additions & 12 deletions test/testpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down