• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# build script written by : Michael Brockus.
3# github repo author: Mike Karlesky, Mark VanderVoord, Greg Williams.
4#
5# license: MIT
6#
7cases = [
8          ['TestProductionCode_Runner.c',  join_paths('..' ,'TestProductionCode.c' )],
9          ['TestProductionCode2_Runner.c', join_paths('..' ,'TestProductionCode2.c')]
10        ]
11
12test('Running: 01-test-case', executable('01-test-case', cases[0], dependencies: [ a_dep, unity_dep ]))
13test('Running: 02-test-case', executable('02-test-case', cases[1], dependencies: [ b_dep, unity_dep ]))
14