[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251110232642.633672-9-yosry.ahmed@linux.dev>
Date: Mon, 10 Nov 2025 23:26:36 +0000
From: Yosry Ahmed <yosry.ahmed@...ux.dev>
To: Sean Christopherson <seanjc@...gle.com>
Cc: Paolo Bonzini <pbonzini@...hat.com>,
Kevin Cheng <chengkev@...gle.com>,
kvm@...r.kernel.org,
linux-kernel@...r.kernel.org,
Yosry Ahmed <yosry.ahmed@...ux.dev>
Subject: [PATCH v3 08/14] x86/svm: Print SVM test names before running tests
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 <yosry.ahmed@...ux.dev>
---
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
Powered by blists - more mailing lists