xref: /aosp_15_r20/external/ltp/testcases/kernel/kvm/include/kvm_test.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright (C) 2021 SUSE LLC <[email protected]>
4  *
5  * Minimal test library for KVM tests
6  */
7 
8 #ifndef KVM_TEST_H_
9 #define KVM_TEST_H_
10 
11 #ifdef COMPILE_PAYLOAD
12 # include "kvm_guest.h"
13 # include "kvm_common.h"
14 #else
15 # include "tst_test.h"
16 # include "kvm_host.h"
17 #endif /* COMPILE_PAYLOAD */
18 
19 #endif /* KVM_TEST_H_ */
20