Skip to content
Snippets Groups Projects
Commit 5de5b834 authored by Florian Fischer's avatar Florian Fischer
Browse files

support generic test suites not just 'smoke'

parent 7704771d
No related branches found
No related tags found
1 merge request!2support generic test suites not just 'smoke'
......@@ -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