KVM: selftests: Remove duplicated TEST_ASSERT in hyperv_cpuid.c
authorThomas Huth <thuth@redhat.com>
Mon, 20 May 2019 10:55:11 +0000 (12:55 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 24 May 2019 19:27:10 +0000 (21:27 +0200)
The check for entry->index == 0 is done twice. One time should
be sufficient.

Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/x86_64/hyperv_cpuid.c

index 071fe32..f72b304 100644 (file)
@@ -52,9 +52,6 @@ static void test_hv_cpuid(struct kvm_cpuid2 *hv_cpuid_entries,
                TEST_ASSERT(entry->index == 0,
                            ".index field should be zero");
 
-               TEST_ASSERT(entry->index == 0,
-                           ".index field should be zero");
-
                TEST_ASSERT(entry->flags == 0,
                            ".flags field should be zero");