blob: 65bd9f13faeb652b4395ca2a4df53a89210cf06a [file] [log] [blame]
Asmitha Karunanithia6c07572022-05-05 03:19:45 -05001inc_dir = include_directories('../../../src/ibm/hypervisor-network-mgr-src/')
2
3hyp_tests = [
4 'hyp_network_manager',
Asmitha Karunanithieb40f082021-07-22 06:13:04 -05005 'hyp_sys_config',
Asmitha Karunanithia6c07572022-05-05 03:19:45 -05006]
7
Asmitha Karunanithia6c07572022-05-05 03:19:45 -05008foreach t : hyp_tests
9 test(
10 t,
11 executable(
12 t.underscorify(),
13 'test_' + t + '.cpp',
14 implicit_include_directories: false,
15 include_directories: inc_dir,
Asmitha Karunanithic24de882021-06-08 11:56:00 -050016 link_with: hyp_networkd_lib,
17 dependencies: test_dep))
Asmitha Karunanithia6c07572022-05-05 03:19:45 -050018endforeach