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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This file is part of libnvme.
# Copyright (c) 2021 Dell Inc.
#
# Authors: Martin Belanger <Martin.Belanger@dell.com>
# These tests all require interaction with a real NVMe device, so we don't
# define as meson unit-tests, and therefore get run as part of the 'test'
# target. However, they're available for developer use, when hardware is
# available.
main = executable(
'main-test',
['test.c'],
dependencies: [libnvme_dep, libuuid_dep],
include_directories: [incdir, internal_incdir]
)
if cxx_available
cpp = executable(
'test-cpp',
['cpp.cc'],
dependencies: libnvme_dep,
include_directories: [incdir, internal_incdir]
)
endif
register = executable(
'test-register',
['register.c'],
dependencies: libnvme_dep,
include_directories: [incdir, internal_incdir]
)
zns = executable(
'test-zns',
['zns.c'],
dependencies: libnvme_dep,
include_directories: [incdir, internal_incdir]
)
mi = executable(
'test-mi',
['mi.c', 'utils.c'],
dependencies: libnvme_mi_test_dep,
include_directories: [incdir, internal_incdir]
)
test('mi', mi)
mi_mctp = executable(
'test-mi-mctp',
['mi-mctp.c', 'utils.c'],
dependencies: libnvme_mi_test_dep,
include_directories: [incdir, internal_incdir],
)
test('mi-mctp', mi_mctp)
|