Skip to content

Commit 1efa02f

Browse files
authored
Invert logic for checking if test suite supports parallel runner. NFC (emscripten-core#25604)
These days the unsupported suites are the exceptions and this will become more true is/when we split up the other suite.
1 parent 40261df commit 1efa02f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ def flattened_tests(loaded_tests):
398398

399399

400400
def suite_for_module(module, tests, options):
401-
suite_supported = module.__name__ in ('test_core', 'test_other', 'test_posixtest', 'test_browser', 'test_codesize')
401+
suite_supported = module.__name__ not in ('test_sanity', 'test_benchmark', 'test_sockets', 'test_interactive', 'test_stress')
402402
if not common.EMTEST_SAVE_DIR and not shared.DEBUG:
403403
has_multiple_tests = len(tests) > 1
404404
has_multiple_cores = parallel_testsuite.num_cores() > 1

0 commit comments

Comments
 (0)