blob: 6cdae18566e7d665b285269b070edd92531ef5fd [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',
10]
11
12foreach t : tests
Zane Shelley0c44c2f2020-06-05 17:14:31 -050013 test(t, executable(t.underscorify(), t + '.cpp', cpp_args : test_arg))
Zane Shelley248cbf82019-05-03 17:07:18 -050014endforeach