Adding upstream version 1.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
809e3412a9
commit
336fe81026
743 changed files with 51081 additions and 0 deletions
39
test/meson.build
Normal file
39
test/meson.build
Normal file
|
@ -0,0 +1,39 @@
|
|||
# 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: libuuid_dep,
|
||||
link_with: libnvme,
|
||||
include_directories: [incdir, internal_incdir]
|
||||
)
|
||||
|
||||
cpp = executable(
|
||||
'test-cpp',
|
||||
['cpp.cc'],
|
||||
link_with: libnvme,
|
||||
include_directories: [incdir, internal_incdir]
|
||||
)
|
||||
|
||||
register = executable(
|
||||
'test-register',
|
||||
['register.c'],
|
||||
link_with: libnvme,
|
||||
include_directories: [incdir, internal_incdir]
|
||||
)
|
||||
|
||||
zns = executable(
|
||||
'test-zns',
|
||||
['zns.c'],
|
||||
link_with: libnvme,
|
||||
include_directories: [incdir, internal_incdir]
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue