1test_arg = [
2    '-DTEST_TRACE',
3]
4
5# end2end code exerciser for experiment and testing
6subdir('end2end')
7
8tests = [
9  'hello-world',
10]
11
12foreach t : tests
13  test(t, executable(t.underscorify(), t + '.cpp', cpp_args : test_arg))
14endforeach
15