diff options
Diffstat (limited to 'tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c')
| -rw-r--r-- | tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c | 16 | 
1 files changed, 7 insertions, 9 deletions
diff --git a/tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c b/tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c index 6502aa23c2f8..3670331adf21 100644 --- a/tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c +++ b/tools/testing/selftests/kvm/x86_64/nested_exceptions_test.c @@ -180,9 +180,7 @@ static void assert_ucall_vector(struct kvm_vcpu *vcpu, int vector)  			    "Expected L2 to ask for %d, L2 says it's done", vector);  		break;  	case UCALL_ABORT: -		TEST_FAIL("%s at %s:%ld (0x%lx != 0x%lx)", -			  (const char *)uc.args[0], __FILE__, uc.args[1], -			  uc.args[2], uc.args[3]); +		REPORT_GUEST_ASSERT(uc);  		break;  	default:  		TEST_FAIL("Expected L2 to ask for %d, got unexpected ucall %lu", vector, uc.cmd); @@ -247,12 +245,12 @@ int main(int argc, char *argv[])  	/* Verify the pending events comes back out the same as it went in. */  	vcpu_events_get(vcpu, &events); -	ASSERT_EQ(events.flags & KVM_VCPUEVENT_VALID_PAYLOAD, -		  KVM_VCPUEVENT_VALID_PAYLOAD); -	ASSERT_EQ(events.exception.pending, true); -	ASSERT_EQ(events.exception.nr, SS_VECTOR); -	ASSERT_EQ(events.exception.has_error_code, true); -	ASSERT_EQ(events.exception.error_code, SS_ERROR_CODE); +	TEST_ASSERT_EQ(events.flags & KVM_VCPUEVENT_VALID_PAYLOAD, +			KVM_VCPUEVENT_VALID_PAYLOAD); +	TEST_ASSERT_EQ(events.exception.pending, true); +	TEST_ASSERT_EQ(events.exception.nr, SS_VECTOR); +	TEST_ASSERT_EQ(events.exception.has_error_code, true); +	TEST_ASSERT_EQ(events.exception.error_code, SS_ERROR_CODE);  	/*  	 * Run for real with the pending #SS, L1 should get a VM-Exit due to  |