From: Lucas Meneghel Rodrigues <[email protected]> Turns out $(tests-common) does not encompass all flat files built for the unittests. So let's fix the makefile install rule to include all flat files generated by the make procedure.
Signed-off-by: Lucas Meneghel Rodrigues <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]> diff --git a/kvm/test/config-x86-common.mak b/kvm/test/config-x86-common.mak index 689e6b4..3ac53a5 100644 --- a/kvm/test/config-x86-common.mak +++ b/kvm/test/config-x86-common.mak @@ -27,7 +27,7 @@ tests-common = $(TEST_DIR)/vmexit.flat $(TEST_DIR)/tsc.flat \ $(TEST_DIR)/realmode.flat $(TEST_DIR)/msr.flat \ $(TEST_DIR)/hypercall.flat $(TEST_DIR)/sieve.flat -tests_and_config = $(tests-common) $(TEST_DIR)/unittests.cfg +tests_and_config = $(TEST_DIR)/*.flat $(TEST_DIR)/unittests.cfg test_cases: $(tests-common) $(tests) -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
