diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2018-07-26 14:19:23 +0300 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2018-08-06 18:32:04 +0300 |
commit | fa3899add1056f209c5b61d0c60cec34775a6781 (patch) | |
tree | 4854009f8c106b8b88b7590aeb0b4aae73448a96 /tools/testing/selftests/kvm/.gitignore | |
parent | 0a505fe6f272c5c1ceebbd266535ad79d9ca6920 (diff) | |
download | linux-fa3899add1056f209c5b61d0c60cec34775a6781.tar.xz |
kvm: selftests: add basic test for state save and restore
The test calls KVM_RUN repeatedly, and creates an entirely new VM with the
old memory and vCPU state on every exit to userspace. The kvm_util API is
expanded with two functions that manage the lifetime of a kvm_vm struct:
the first closes the file descriptors and leaves the memory allocated,
and the second opens the file descriptors and reuses the memory from
the previous incarnation of the kvm_vm struct.
For now the test is very basic, as it does not test for example XSAVE or
vCPU events. However, it will test nested virtualization state starting
with the next patch.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools/testing/selftests/kvm/.gitignore')
-rw-r--r-- | tools/testing/selftests/kvm/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/testing/selftests/kvm/.gitignore b/tools/testing/selftests/kvm/.gitignore index 8fb7903f6643..4202139d81d9 100644 --- a/tools/testing/selftests/kvm/.gitignore +++ b/tools/testing/selftests/kvm/.gitignore @@ -2,3 +2,4 @@ cr4_cpuid_sync_test set_sregs_test sync_regs_test vmx_tsc_adjust_test +state_test |