KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests
authorThomas Huth <thuth@redhat.com>
Thu, 26 Aug 2021 07:49:28 +0000 (09:49 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Thu, 30 Sep 2021 08:27:08 +0000 (04:27 -0400)
commit22d7108ce47290d47e1ea83a28fbfc85e0ecf97e
treef1c3f55a5216a79c1048a032496f0fa7ce66e5a9
parentd22869aff4dc8fbbb694c6fe9a4b5db2d570a138
KVM: selftests: Fix kvm_vm_free() in cr4_cpuid_sync and vmx_tsc_adjust tests

The kvm_vm_free() statement here is currently dead code, since the loop
in front of it can only be left with the "goto done" that jumps right
after the kvm_vm_free(). Fix it by swapping the locations of the "done"
label and the kvm_vm_free().

Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20210826074928.240942-1-thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/x86_64/cr4_cpuid_sync_test.c
tools/testing/selftests/kvm/x86_64/vmx_tsc_adjust_test.c