]> git.itanic.dy.fi Git - linux-stable/commit
KVM: selftests: Fail tests when open() fails with !ENOENT
authorVitaly Kuznetsov <vkuznets@redhat.com>
Mon, 29 Jan 2024 08:58:47 +0000 (09:58 +0100)
committerSean Christopherson <seanjc@google.com>
Tue, 30 Jan 2024 20:32:03 +0000 (12:32 -0800)
commitc2a449a30fa2b5ddc1dd058e92e047157c9eeb9e
tree72a4f436e23a1d0a735162e95686e4023e013fe1
parent8ad4855273488c9bd5320b3fee80f66f0023f326
KVM: selftests: Fail tests when open() fails with !ENOENT

open_path_or_exit() is used for '/dev/kvm', '/dev/sev', and
'/sys/module/%s/parameters/%s' and skipping test when the entry is missing
is completely reasonable. Other errors, however, may indicate a real issue
which is easy to miss. E.g. when 'hyperv_features' test was entering an
infinite loop the output was:

./hyperv_features
Testing access to Hyper-V specific MSRs
1..0 # SKIP - /dev/kvm not available (errno: 24)

and this can easily get overlooked.

Keep ENOENT case 'special' for skipping tests and fail when open() results
in any other errno.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Link: https://lore.kernel.org/r/20240129085847.2674082-2-vkuznets@redhat.com
Signed-off-by: Sean Christopherson <seanjc@google.com>
tools/testing/selftests/kvm/lib/kvm_util.c