blob: 676c518e6263db7f3db14c796db1097be9ce73a4 [file] [log] [blame]
Zane Shelley0c44c2f2020-06-05 17:14:31 -05001test_arg = [
2 '-DTEST_TRACE',
3]
4
Ben Tyner9ae5ca42020-02-28 13:13:50 -06005# end2end code exerciser for experiment and testing
6subdir('end2end')
7
Zane Shelley248cbf82019-05-03 17:07:18 -05008tests = [
9 'hello-world',
Zane Shelleyd26298b2021-01-28 16:49:19 -060010 'bin_stream_test',
Zane Shelleyf685afd2021-02-15 15:39:44 -060011 'service_data_test',
Zane Shelley248cbf82019-05-03 17:07:18 -050012]
13
Zane Shelley9faf73b2020-12-01 19:51:35 -060014gtest = dependency('gtest', main : true, required : false, method : 'system')
15
16if gtest.found()
17 foreach t : tests
18 test(t, executable(t.underscorify(), t + '.cpp', dependencies : gtest,
19 cpp_args : test_arg, include_directories : incdir))
20 endforeach
21
22 test('ffdc_file_test',
23 executable('ffdc_file_test', 'ffdc_file_test.cpp',
24 files('../util/ffdc_file.cpp',
25 '../util/temporary_file.cpp'),
26 dependencies : gtest,
27 cpp_args : test_arg,
28 include_directories : incdir))
29endif