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

Merge branch 'meson_generic_test_suite' into 'master'

support generic test suites not just 'smoke'

See merge request i4/manycore/emper!7
parents 7704771d 5de5b834
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ tests = {
'SimplestFibTest.cpp':
{
'description': 'Simplest fib test',
'smoke_test': true,
'test_suite': 'smoke',
},
'c_api_test.c':
......@@ -50,16 +50,10 @@ foreach source, test_dict : tests
link_with: [emper, emper_c],
)
if test_dict.get('smoke_test', false)
test_suite = 'smoke'
else
test_suite = 'all'
endif
test(test_dict.get('description', ''),
test_exe,
is_parallel: test_dict.get('is_parallel', true),
suite: test_suite,
suite: test_dict.get('test_suite', 'all'),
timeout: 60
)
endforeach
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment