From 0212ce0db9879e4e579df8b2cab3233bb5305c25 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Fri, 9 Sep 2022 15:38:31 +0200 Subject: [PATCH] build: Tweak the names of the ShellCheck tests https://github.com/containers/toolbox/pull/1120 --- meson.build | 2 +- profile.d/meson.build | 2 +- src/meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 5baec0c..c54461f 100644 --- a/meson.build +++ b/meson.build @@ -36,7 +36,7 @@ endif toolbox_sh = files('toolbox') if shellcheck.found() - test('shellcheck', shellcheck, args: [toolbox_sh]) + test('shellcheck toolbox (deprecated)', shellcheck, args: [toolbox_sh]) endif if not skopeo.found() diff --git a/profile.d/meson.build b/profile.d/meson.build index 9778d3e..0385e00 100644 --- a/profile.d/meson.build +++ b/profile.d/meson.build @@ -1,7 +1,7 @@ profile_toolbox_sh = files('toolbox.sh') if shellcheck.found() - test('shellcheck profile.d', shellcheck, args: ['--shell=sh', profile_toolbox_sh]) + test('shellcheck profile.d/toolbox.sh', shellcheck, args: ['--shell=sh', profile_toolbox_sh]) endif install_data( diff --git a/src/meson.build b/src/meson.build index 1058147..2f73cb3 100644 --- a/src/meson.build +++ b/src/meson.build @@ -67,7 +67,7 @@ toolbox_go = custom_target( ) if shellcheck.found() - test('shellcheck go-build-wrapper', shellcheck, args: [go_build_wrapper_file]) + test('shellcheck src/go-build-wrapper', shellcheck, args: [go_build_wrapper_file]) endif test('go fmt', meson_go_fmt_program, args: [meson.current_source_dir()])