2017-11-25 11:39:06 +01:00
|
|
|
|
|
|
|
|
exe = executable(
|
2019-04-21 10:11:16 +02:00
|
|
|
'clients-test-general',
|
|
|
|
|
'test-general.c',
|
|
|
|
|
dependencies: [
|
|
|
|
|
libnm_dep,
|
|
|
|
|
libnmc_dep,
|
|
|
|
|
libnmc_base_dep,
|
|
|
|
|
libnm_core_dep,
|
|
|
|
|
],
|
2018-01-02 13:37:06 +01:00
|
|
|
c_args: clients_cflags + [
|
|
|
|
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
|
|
|
|
],
|
2017-11-25 11:39:06 +01:00
|
|
|
)
|
|
|
|
|
|
2018-04-11 10:49:33 +02:00
|
|
|
test(
|
2019-04-21 10:11:16 +02:00
|
|
|
'clients/common/tests/test-general',
|
2018-04-11 10:49:33 +02:00
|
|
|
test_script,
|
2018-10-18 12:50:20 +02:00
|
|
|
args: test_args + [exe.full_path()],
|
2018-04-11 10:49:33 +02:00
|
|
|
)
|
2019-04-21 10:11:16 +02:00
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
|
exe = executable(
|
|
|
|
|
'test-libnm-core-aux',
|
|
|
|
|
[ 'test-libnm-core-aux.c', ],
|
|
|
|
|
c_args: [
|
|
|
|
|
'-DNETWORKMANAGER_COMPILATION_TEST',
|
|
|
|
|
'-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_CLIENT',
|
|
|
|
|
],
|
|
|
|
|
dependencies: [
|
|
|
|
|
libnm_dep,
|
|
|
|
|
shared_nm_libnm_core_aux_dep,
|
|
|
|
|
shared_nm_libnm_core_intern_dep,
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
test(
|
|
|
|
|
'clients/common/tests/test-libnm-core-aux',
|
|
|
|
|
test_script,
|
|
|
|
|
args: test_args + [exe.full_path()]
|
|
|
|
|
)
|