1
0
Fork 0

Merging upstream version 2.4+really2.4.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-02-16 12:23:16 +01:00
parent f52576e699
commit be98c20625
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
458 changed files with 7148 additions and 5151 deletions

View file

@ -18,6 +18,15 @@ test_suffix_si_parse = executable(
test('suffix_si_parse', test_suffix_si_parse)
test_suffix_binary_parse = executable(
'test-suffix-binary-parse',
['test-suffix-binary-parse.c', '../util/suffix.c'],
include_directories: [incdir, '..'],
dependencies: [libnvme_dep],
)
test('suffix_binary_parse', test_suffix_binary_parse)
test_uint128_si = executable(
'test-uint128-si',
['test-uint128-si.c', '../util/types.c', '../util/suffix.c'],
@ -26,3 +35,12 @@ test_uint128_si = executable(
)
test('uint128-si', test_uint128_si)
test_argconfig_parse = executable(
'test-argconfig-parse',
['test-argconfig-parse.c', '../util/argconfig.c', '../util/suffix.c'],
include_directories: [incdir, '..'],
dependencies: [libnvme_dep],
)
test('argconfig_parse', test_argconfig_parse)