Skip to content
Snippets Groups Projects
Commit eecba6a2 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'run_tests_serialized' into 'master'

do not run tests in parallel by default

See merge request i4/manycore/emper!27
parents 110443c2 a173461c
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ tests = { ...@@ -12,6 +12,7 @@ tests = {
{ {
'description': 'Simplest fib test', 'description': 'Simplest fib test',
'test_suite': 'smoke', 'test_suite': 'smoke',
'is_parallel': true,
}, },
'c_api_test.c': 'c_api_test.c':
...@@ -76,7 +77,7 @@ foreach source, test_dict : tests ...@@ -76,7 +77,7 @@ foreach source, test_dict : tests
test(test_name, test(test_name,
test_exe, test_exe,
is_parallel: test_dict.get('is_parallel', true), is_parallel: test_dict.get('is_parallel', false),
suite: test_dict.get('test_suite', 'all'), suite: test_dict.get('test_suite', 'all'),
timeout: 60, timeout: 60,
env: test_env, env: test_env,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment