Browse Source
Initial test with just pxb-cxl. Other tests will be added alongside functionality. Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Tested-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20220429144110.25167-16-Jonathan.Cameron@huawei.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>pull/213/head
committed by
Michael S. Tsirkin
2 changed files with 26 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||
|
/*
|
||||
|
* QTest testcase for CXL |
||||
|
* |
||||
|
* This work is licensed under the terms of the GNU GPL, version 2 or later. |
||||
|
* See the COPYING file in the top-level directory. |
||||
|
*/ |
||||
|
|
||||
|
#include "qemu/osdep.h" |
||||
|
#include "libqtest-single.h" |
||||
|
|
||||
|
static void cxl_basic_pxb(void) |
||||
|
{ |
||||
|
qtest_start("-machine q35,cxl=on -device pxb-cxl,bus=pcie.0"); |
||||
|
qtest_end(); |
||||
|
} |
||||
|
|
||||
|
int main(int argc, char **argv) |
||||
|
{ |
||||
|
g_test_init(&argc, &argv, NULL); |
||||
|
qtest_add_func("/pci/cxl/basic_pxb", cxl_basic_pxb); |
||||
|
return g_test_run(); |
||||
|
} |
||||
Loading…
Reference in new issue