Re: [PATCH] selftests/kvm: Fix issues with $(SPLIT_TESTS)

From: Andrew Jones
Date: Wed Nov 22 2023 - 03:01:18 EST


On Tue, Nov 21, 2023 at 11:56:31AM -0500, Paolo Bonzini wrote:
> The introduction of $(SPLIT_TESTS) also introduced a warning when
> building selftests on architectures that include get-reg-lists:
>
> make: Entering directory '/root/kvm/tools/testing/selftests/kvm'
> Makefile:272: warning: overriding recipe for target '/root/kvm/tools/testing/selftests/kvm/get-reg-list'
> Makefile:267: warning: ignoring old recipe for target '/root/kvm/tools/testing/selftests/kvm/get-reg-list'
> make: Leaving directory '/root/kvm/tools/testing/selftests/kvm'
>
> In addition, the rule for $(SPLIT_TESTS_TARGETS) includes _all_
> the $(SPLIT_TESTS_OBJS), which only works because there is just one.
> So fix both by adjusting the rules:
>
> - remove $(SPLIT_TESTS_TARGETS) from the $(TEST_GEN_PROGS) rules,
> and rename it to $(SPLIT_TEST_GEN_PROGS)
>
> - fix $(SPLIT_TESTS_OBJS) so that it plays well with $(OUTPUT),
> rename it to $(SPLIT_TEST_GEN_OBJ), and list the object file
> explicitly in the $(SPLIT_TEST_GEN_PROGS) link rule
>
> Fixes: 17da79e009c3 ("KVM: arm64: selftests: Split get-reg-list test code", 2023-08-09)
> Signed-off-by: Paolo Bonzini <pbonzini@xxxxxxxxxx>
> ---
> tools/testing/selftests/kvm/Makefile | 20 ++++++++++++--------
> 1 file changed, 12 insertions(+), 8 deletions(-)
>

Thanks for these fixes, Paolo! And thanks for keeping my old @redhat.com
address alive!

I've tested this on riscv,

Tested-by: Andrew Jones <ajones@xxxxxxxxxxxxxxxx>

Thanks,
drew