diff --git a/libnvme/meson.build b/libnvme/meson.build index 12a601e8..b5b99fc5 100644 --- a/libnvme/meson.build +++ b/libnvme/meson.build @@ -67,16 +67,16 @@ if build_python_bindings test_env.append('PYTHONMALLOC', 'malloc') # Test section - test('[Python] import libnvme', python3, args: ['-c', 'from libnvme import nvme'], env: test_env, depends: pynvme_clib) + test('python-import-libnvme', python3, args: ['-c', 'from libnvme import nvme'], env: test_env, depends: pynvme_clib) py_tests = [ - [ 'create ctrl object', [ files('tests/create-ctrl-obj.py'), ] ], - [ 'SIGSEGV during gc', [ files('tests/gc.py'), ] ], - [ 'Read NBFT file', [ files('tests/test-nbft.py'), '--filename', join_paths(meson.current_source_dir(), 'tests', 'NBFT') ] ], + [ 'create-ctrl-object', [ files('tests/create-ctrl-obj.py'), ] ], + [ 'sigsegv-during-gc', [ files('tests/gc.py'), ] ], + [ 'read-nbft-file', [ files('tests/test-nbft.py'), '--filename', join_paths(meson.current_source_dir(), 'tests', 'NBFT') ] ], ] foreach test: py_tests description = test[0] args = test[1] - test('[Python] ' + description, python3, args: args, env: test_env, depends: pynvme_clib) + test('python-' + description, python3, args: args, env: test_env, depends: pynvme_clib) endforeach endif diff --git a/test/meson.build b/test/meson.build index 71be57c0..2b4c6d80 100644 --- a/test/meson.build +++ b/test/meson.build @@ -92,7 +92,7 @@ if conf.get('HAVE_NETDB') ['test-util.c'], include_directories: [incdir, internal_incdir] ) - test('Test util.c', test_util) + test('util', test_util) endif subdir('ioctl')