Message ID | 20210218002212.2904647-7-seanjc@google.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | x86: nVMX: Unrestricted guest fix and cleanups | expand |
diff --git a/x86/vmx_tests.c b/x86/vmx_tests.c index 1097a53..f9883f0 100644 --- a/x86/vmx_tests.c +++ b/x86/vmx_tests.c @@ -5556,7 +5556,7 @@ static void test_guest_state(const char *test, bool xfail, u64 field, ((xfail && result.exit_reason.basic == VMX_FAIL_STATE) || (!xfail && result.exit_reason.basic == VMX_VMCALL)) && (!xfail || vmcs_read(EXI_QUALIFICATION) == ENTRY_FAIL_DEFAULT), - "%s, %s %lx", test, field_name, field); + "%s, %s = %lx", test, field_name, field); if (!result.exit_reason.failed_vmentry) skip_exit_insn();
Insert "=" between the field name and its value when reporting a failure in test_guest_state() to make it obvious that the number is the value of the field. Signed-off-by: Sean Christopherson <seanjc@google.com> --- x86/vmx_tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)