diff options
| author | Alok Tiwari <alok.a.tiwari@oracle.com> | 2025-08-24 11:16:40 -0700 |
|---|---|---|
| committer | Sean Christopherson <seanjc@google.com> | 2025-09-08 13:03:22 -0700 |
| commit | 665071186ce4af9f83a5d78bcb7a2a3a6b3ecfe7 (patch) | |
| tree | 99b1be52f416c051929ec283716c49fa49c0e611 /tools | |
| parent | 05f297c3e39f62f579458a59ab1b1c8bf3fc1c51 (diff) | |
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>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/testing/selftests/kvm/x86/hyperv_cpuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/x86/hyperv_cpuid.c b/tools/testing/selftests/kvm/x86/hyperv_cpuid.c index c863a689aa98..3c21af811d8f 100644 --- a/tools/testing/selftests/kvm/x86/hyperv_cpuid.c +++ b/tools/testing/selftests/kvm/x86/hyperv_cpuid.c @@ -45,7 +45,7 @@ static void test_hv_cpuid(struct kvm_vcpu *vcpu, bool evmcs_expected) TEST_ASSERT((entry->function >= 0x40000000) && (entry->function <= 0x40000082), - "function %x is our of supported range", + "function %x is out of supported range", entry->function); TEST_ASSERT(entry->index == 0, |
