diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-11-29 16:43:10 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-11-29 16:43:10 +0000 |
| commit | 94f3397d197e47eb58a7391acd9c63c5565fa26e (patch) | |
| tree | ceb4a7dca31731894ccf50bb23bef58f767e0551 | |
| parent | f0ffe5cb2b12c953b6900b3fcd427a9cc4731539 (diff) | |
| download | gentoo-utils-94f3397d197e47eb58a7391acd9c63c5565fa26e.tar.gz | |
use fs.stem instead of name in tests/meson.build
| -rw-r--r-- | tests/meson.build | 6 |
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], |
