1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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',
],
env: [
'LIBTOOL=',
],
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',
],
env: [
'LIBTOOL=',
],
)
endif
|