s/selftest/selftests On Tue, Oct 18, 2022, David Matlack wrote: > diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore > index c484ff164000..22807badd510 100644 > --- a/tools/testing/selftests/kvm/.gitignore > +++ b/tools/testing/selftests/kvm/.gitignore > @@ -16,6 +16,7 @@ > /x86_64/cr4_cpuid_sync_test > /x86_64/debug_regs > /x86_64/evmcs_test > +/x86_64/exit_on_emulation_failure_test > /x86_64/fix_hypercall_test > /x86_64/get_msr_index_features > /x86_64/kvm_clock_test > diff --git a/tools/testing/selftests/kvm/Makefile b/tools/testing/selftests/kvm/Makefile > index 90c19e1753f7..55b6f4efa57c 100644 > --- a/tools/testing/selftests/kvm/Makefile > +++ b/tools/testing/selftests/kvm/Makefile > @@ -81,6 +81,7 @@ TEST_GEN_PROGS_x86_64 = x86_64/cpuid_test > TEST_GEN_PROGS_x86_64 += x86_64/cr4_cpuid_sync_test > TEST_GEN_PROGS_x86_64 += x86_64/get_msr_index_features > TEST_GEN_PROGS_x86_64 += x86_64/evmcs_test > +TEST_GEN_PROGS_x86_64 += x86_64/exit_on_emulation_failure_test We really should figure out an automation solution, both for .gitignore (easier) and for selecting which binaries to compile. The makefile especially is getting unwieldy.