1
0
Fork 0

Merging upstream version 1.6.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 10:12:19 +01:00
parent adbb3a10cc
commit 6add9877e4
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
871 changed files with 8481 additions and 1502 deletions

View file

@ -67,14 +67,20 @@ uuid = executable(
test('uuid', uuid)
if conf.get('HAVE_NETDB')
mock_ifaddrs = library(
'mock-ifaddrs',
['mock-ifaddrs.c', ],
)
tree = executable(
'tree',
['tree.c'],
dependencies: libnvme_dep,
include_directories: [incdir, internal_incdir]
include_directories: [incdir, internal_incdir],
link_with: mock_ifaddrs,
)
test('tree', tree)
test('tree', tree, env: ['LD_PRELOAD=' + mock_ifaddrs.full_path()])
test_util = executable(
'test-util',
@ -84,4 +90,5 @@ if conf.get('HAVE_NETDB')
test('Test util.c', test_util)
endif
subdir('ioctl')
subdir('nbft')