build: Tweak the names of the ShellCheck tests

https://github.com/containers/toolbox/pull/1120
This commit is contained in:
Debarshi Ray 2022-09-09 15:38:31 +02:00
parent e6c0c00d79
commit 0212ce0db9
3 changed files with 3 additions and 3 deletions

View file

@ -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()

View file

@ -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(

View file

@ -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()])