1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2021 SUSE LLC <mdoucha@suse.cz>
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