mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-29 03:04:27 +01:00
Added example 4 in examples directory.
This commit is contained in:
24
examples/example_4/test/test_runners/meson.build
Normal file
24
examples/example_4/test/test_runners/meson.build
Normal file
@@ -0,0 +1,24 @@
|
||||
###################################################################################
|
||||
# #
|
||||
# NAME: examples/example_4/test/test_runners/meson.build #
|
||||
# #
|
||||
# AUTHOR: Mike Karlesky, Mark VanderVoord, Greg Williams. #
|
||||
# WRITTEN BY: Michael Brockus. #
|
||||
# #
|
||||
# License: MIT #
|
||||
# #
|
||||
###################################################################################
|
||||
|
||||
|
||||
|
||||
test_src_1 = [
|
||||
'TestProductionCode_Runner.c',
|
||||
join_paths('..' ,'TestProductionCode.c')
|
||||
]
|
||||
test_src_2 = [
|
||||
'TestProductionCode2_Runner.c',
|
||||
join_paths('..' ,'TestProductionCode2.c')
|
||||
]
|
||||
|
||||
test('Test production code one', executable('test-1', test_src_1, dependencies: [ example_dep, unity_dep ]))
|
||||
test('Test production code two', executable('test-2', test_src_2, dependencies: [ example_dep, unity_dep ]))
|
||||
Reference in New Issue
Block a user