mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-06-11 11:58:23 +02:00
29 lines
558 B
Meson
29 lines
558 B
Meson
# 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,
|
|
python_path,
|
|
'--',
|
|
'TestNmcli',
|
|
],
|
|
timeout: 120,
|
|
)
|
|
|
|
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,
|
|
python_path,
|
|
'--',
|
|
'TestNmCloudSetup',
|
|
],
|
|
timeout: 120,
|
|
)
|
|
endif
|