mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 14:24:02 +08:00
tests: virtio-9p: introduce start/stop functions
First step to be able to run several functional steps. Signed-off-by: Greg Kurz <groug@kaod.org> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
This commit is contained in:
parent
e3e83f2e21
commit
993f8054d1
@ -11,33 +11,41 @@
|
||||
#include "libqtest.h"
|
||||
#include "qemu-common.h"
|
||||
|
||||
/* Tests only initialization so far. TODO: Replace with functional tests */
|
||||
static void pci_nop(void)
|
||||
static const char mount_tag[] = "qtest";
|
||||
static char *test_share;
|
||||
|
||||
static void qvirtio_9p_start(void)
|
||||
{
|
||||
char *args;
|
||||
|
||||
test_share = g_strdup("/tmp/qtest.XXXXXX");
|
||||
g_assert_nonnull(mkdtemp(test_share));
|
||||
|
||||
args = g_strdup_printf("-fsdev local,id=fsdev0,security_model=none,path=%s "
|
||||
"-device virtio-9p-pci,fsdev=fsdev0,mount_tag=%s",
|
||||
test_share, mount_tag);
|
||||
|
||||
qtest_start(args);
|
||||
g_free(args);
|
||||
}
|
||||
|
||||
static char test_share[] = "/tmp/qtest.XXXXXX";
|
||||
static void qvirtio_9p_stop(void)
|
||||
{
|
||||
qtest_end();
|
||||
rmdir(test_share);
|
||||
g_free(test_share);
|
||||
}
|
||||
|
||||
static void pci_nop(void)
|
||||
{
|
||||
qvirtio_9p_start();
|
||||
qvirtio_9p_stop();
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
char *args;
|
||||
int ret;
|
||||
|
||||
g_test_init(&argc, &argv, NULL);
|
||||
qtest_add_func("/virtio/9p/pci/nop", pci_nop);
|
||||
|
||||
g_assert(mkdtemp(test_share));
|
||||
|
||||
args = g_strdup_printf("-fsdev local,id=fsdev0,security_model=none,path=%s "
|
||||
"-device virtio-9p-pci,fsdev=fsdev0,mount_tag=qtest",
|
||||
test_share);
|
||||
qtest_start(args);
|
||||
g_free(args);
|
||||
|
||||
ret = g_test_run();
|
||||
|
||||
qtest_end();
|
||||
rmdir(test_share);
|
||||
|
||||
return ret;
|
||||
return g_test_run();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user