Skip to content

Commit 6650711

Browse files
aloktiwasean-jc
authored andcommitted
KVM: selftests: Fix typo in hyperv cpuid test message
Fix a typo in hyperv_cpuid.c test assertion log: replace "our of supported range" -> "out of supported range". Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com> Link: https://lore.kernel.org/r/20250824181642.629297-1-alok.a.tiwari@oracle.com Signed-off-by: Sean Christopherson <seanjc@google.com>
1 parent 05f297c commit 6650711

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/testing/selftests/kvm/x86/hyperv_cpuid.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static void test_hv_cpuid(struct kvm_vcpu *vcpu, bool evmcs_expected)
4545

4646
TEST_ASSERT((entry->function >= 0x40000000) &&
4747
(entry->function <= 0x40000082),
48-
"function %x is our of supported range",
48+
"function %x is out of supported range",
4949
entry->function);
5050

5151
TEST_ASSERT(entry->index == 0,

0 commit comments

Comments
 (0)