summaryrefslogtreecommitdiff
path: root/tests/meson.build
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-29 16:43:10 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-29 16:43:10 +0000
commit94f3397d197e47eb58a7391acd9c63c5565fa26e (patch)
treeceb4a7dca31731894ccf50bb23bef58f767e0551 /tests/meson.build
parentf0ffe5cb2b12c953b6900b3fcd427a9cc4731539 (diff)
downloadgentoo-utils-94f3397d197e47eb58a7391acd9c63c5565fa26e.tar.gz
use fs.stem instead of name in tests/meson.build
Diffstat (limited to 'tests/meson.build')
-rw-r--r--tests/meson.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/meson.build b/tests/meson.build
index 27fdce9..8ba06e8 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -4,12 +4,12 @@ subdir('porthole')
subdir('repo')
foreach test, test_args : tests
- name = fs.name(test)
+ stem = fs.stem(test)
test(
- f'test_@name@',
+ f'test_@stem@',
executable(
- f'test_@name@',
+ f'test_@stem@',
test,
dependencies: [mon, itertools],
link_with: [gentoo_utils],