2021-03-15 10:59:24 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
|
|
|
|
|
test(
|
|
|
|
|
'check-local-tests-client',
|
|
|
|
|
find_program(join_paths(source_root, 'src/tests/client/test-client.sh')),
|
|
|
|
|
args: [
|
|
|
|
|
build_root,
|
|
|
|
|
source_root,
|
2024-04-02 17:14:44 +02:00
|
|
|
python_path,
|
2023-02-03 11:05:33 +01:00
|
|
|
'--',
|
2023-03-02 19:31:53 +01:00
|
|
|
'TestNmcli',
|
2021-03-15 10:59:24 +01:00
|
|
|
],
|
2023-02-03 14:07:25 +01:00
|
|
|
env: [
|
|
|
|
|
'LIBTOOL=',
|
|
|
|
|
],
|
2021-03-15 10:59:24 +01:00
|
|
|
timeout: 120,
|
|
|
|
|
)
|
2023-03-02 19:35:38 +01:00
|
|
|
|
|
|
|
|
if enable_nm_cloud_setup
|
|
|
|
|
test(
|
|
|
|
|
'check-local-tests-cloud-setup',
|
|
|
|
|
find_program(join_paths(source_root, 'src/tests/client/test-client.sh')),
|
|
|
|
|
args: [
|
|
|
|
|
build_root,
|
|
|
|
|
source_root,
|
2024-04-02 17:14:44 +02:00
|
|
|
python_path,
|
2023-03-02 19:35:38 +01:00
|
|
|
'--',
|
|
|
|
|
'TestNmCloudSetup',
|
|
|
|
|
],
|
|
|
|
|
env: [
|
|
|
|
|
'LIBTOOL=',
|
|
|
|
|
],
|
2023-05-19 16:02:18 +02:00
|
|
|
timeout: 120,
|
2023-03-02 19:35:38 +01:00
|
|
|
)
|
|
|
|
|
endif
|