From: Greg Kurz <groug@kaod.org>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
Greg Kurz <groug@kaod.org>
Subject: [Qemu-devel] [PULL v2 5/8] tests: virtio-9p: introduce start/stop functions
Date: Fri, 16 Sep 2016 20:03:27 +0200 [thread overview]
Message-ID: <1474049010-13533-6-git-send-email-groug@kaod.org> (raw)
In-Reply-To: <1474049010-13533-1-git-send-email-groug@kaod.org>
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>
---
tests/virtio-9p-test.c | 42 +++++++++++++++++++++++++-----------------
1 file changed, 25 insertions(+), 17 deletions(-)
diff --git a/tests/virtio-9p-test.c b/tests/virtio-9p-test.c
index 1e39335a7945..45fc8041d7f3 100644
--- a/tests/virtio-9p-test.c
+++ b/tests/virtio-9p-test.c
@@ -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 char test_share[] = "/tmp/qtest.XXXXXX";
-
-int main(int argc, char **argv)
+static void qvirtio_9p_start(void)
{
char *args;
- int ret;
- g_test_init(&argc, &argv, NULL);
- qtest_add_func("/virtio/9p/pci/nop", pci_nop);
-
- g_assert(mkdtemp(test_share));
+ 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=qtest",
- test_share);
+ "-device virtio-9p-pci,fsdev=fsdev0,mount_tag=%s",
+ test_share, mount_tag);
+
qtest_start(args);
g_free(args);
+}
- ret = g_test_run();
-
+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)
+{
+ g_test_init(&argc, &argv, NULL);
+ qtest_add_func("/virtio/9p/pci/nop", pci_nop);
- return ret;
+ return g_test_run();
}
--
2.5.5
next prev parent reply other threads:[~2016-09-16 18:03 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-16 18:03 [Qemu-devel] [PULL v2 0/8] 9p patches for 2.8 20160916 Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 1/8] 9pfs: drop unused fmt strings in the proxy backend Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 2/8] 9pfs: drop duplicate line in " Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 3/8] 9pfs: drop useless v9fs_string_null() function Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 4/8] 9pfs: introduce v9fs_path_sprintf() helper Greg Kurz
2016-09-16 18:03 ` Greg Kurz [this message]
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 6/8] tests: virtio-9p: add basic configuration test Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 7/8] tests: virtio-9p: add basic transaction test Greg Kurz
2016-09-19 9:41 ` Greg Kurz
2016-09-16 18:03 ` [Qemu-devel] [PULL v2 8/8] 9pfs: fix potential segfault during walk Greg Kurz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1474049010-13533-6-git-send-email-groug@kaod.org \
--to=groug@kaod.org \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).