When SVM tests are run, the log is a see of PASS/FAIL/SKIPs that are not clearly separated by test. Sometimes it's hard to attribute a failure to a specific test (e.g. if the same helper is reused by multiple tests). Print the test name before running each test. Signed-off-by: Yosry Ahmed --- x86/svm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/x86/svm.c b/x86/svm.c index 5015339ddb657..de9eb19443caa 100644 --- a/x86/svm.c +++ b/x86/svm.c @@ -407,6 +407,7 @@ int run_svm_tests(int ac, char **av, struct svm_test *svm_tests) report_skip("%s (not supported)", svm_tests[i].name); continue; } + printf("SVM test: %s\n", svm_tests[i].name); if (svm_tests[i].v2 == NULL) { if (svm_tests[i].on_vcpu) { if (cpu_count() <= svm_tests[i].on_vcpu) -- 2.51.2.1041.gc1ab5b90ca-goog