Merging upstream version 1.6.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
adbb3a10cc
commit
6add9877e4
871 changed files with 8481 additions and 1502 deletions
32
test/ioctl/meson.build
Normal file
32
test/ioctl/meson.build
Normal file
|
@ -0,0 +1,32 @@
|
|||
mock_ioctl = library(
|
||||
'mock-ioctl',
|
||||
['mock.c', 'util.c'],
|
||||
)
|
||||
|
||||
discovery = executable(
|
||||
'test-discovery',
|
||||
'discovery.c',
|
||||
dependencies: libnvme_dep,
|
||||
include_directories: [incdir, internal_incdir],
|
||||
link_with: mock_ioctl,
|
||||
)
|
||||
|
||||
test('discovery', discovery, env: ['LD_PRELOAD=' + mock_ioctl.full_path()])
|
||||
|
||||
features = executable(
|
||||
'test-features',
|
||||
'features.c',
|
||||
dependencies: libnvme_dep,
|
||||
link_with: mock_ioctl,
|
||||
)
|
||||
|
||||
test('features', features, env: ['LD_PRELOAD=' + mock_ioctl.full_path()])
|
||||
|
||||
identify = executable(
|
||||
'test-identify',
|
||||
'identify.c',
|
||||
dependencies: libnvme_dep,
|
||||
link_with: mock_ioctl,
|
||||
)
|
||||
|
||||
test('identify', identify, env: ['LD_PRELOAD=' + mock_ioctl.full_path()])
|
Loading…
Add table
Add a link
Reference in a new issue