From: Yu Watanabe Date: Fri, 7 Feb 2025 17:20:02 +0000 (+0900) Subject: meson: fix suite of alignment check tests X-Git-Tag: v258-rc1~1387 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=576e98a72c2f6b0145c63c3f3fec1b9194a60539;p=thirdparty%2Fsystemd.git meson: fix suite of alignment check tests Follow-up for 97318131fd06a5bc35454da81dcbbc84f16d9940. By default, suite of each built test is determined by the directory of the source file. Hence, before the mentioned commit, all tests in src/boot/efi/ are in the 'efi' suite. The commit changed the directory tree, but forgot to update the name of the test suite. --- diff --git a/src/boot/meson.build b/src/boot/meson.build index 3a17ab5ed0f..3af5006d598 100644 --- a/src/boot/meson.build +++ b/src/boot/meson.build @@ -451,7 +451,7 @@ foreach efi_elf_binary : efi_elf_binaries test('check-alignment-@0@'.format(name), check_efi_alignment_py, args : exe.full_path(), - suite : 'efi') + suite : 'boot') endforeach alias_target('systemd-boot', boot_targets)