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@xxxxxxxxxx> --- x86/vmx_tests.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.30.0.478.g8a0d178c01-goog