From: Michael Roth <mdroth@linux.vnet.ibm.com>
To: qemu-devel@nongnu.org
Cc: aliguori@linux.vnet.ibm.com, ryanh@us.ibm.com,
agl@linux.vnet.ibm.com, mdroth@linux.vnet.ibm.com,
stefanha@linux.vnet.ibm.com
Subject: [Qemu-devel] [RFC][PATCH v1 1/4] qtest: add qtest to supported qemu modules
Date: Fri, 4 Feb 2011 07:49:49 -0600 [thread overview]
Message-ID: <1296827392-1291-2-git-send-email-mdroth@linux.vnet.ibm.com> (raw)
In-Reply-To: <1296827392-1291-1-git-send-email-mdroth@linux.vnet.ibm.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
module.h | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/module.h b/module.h
index 9263f1c..d2bf34d 100644
--- a/module.h
+++ b/module.h
@@ -24,12 +24,15 @@ typedef enum {
MODULE_INIT_BLOCK,
MODULE_INIT_DEVICE,
MODULE_INIT_MACHINE,
- MODULE_INIT_MAX
+ MODULE_INIT_QTEST_REGISTRY,
+ MODULE_INIT_MAX,
} module_init_type;
#define block_init(function) module_init(function, MODULE_INIT_BLOCK)
#define device_init(function) module_init(function, MODULE_INIT_DEVICE)
#define machine_init(function) module_init(function, MODULE_INIT_MACHINE)
+#define qtest_init_registry(function) \
+ module_init(function, MODULE_INIT_QTEST_REGISTRY)
void register_module_init(void (*fn)(void), module_init_type type);
--
1.7.0.4
next prev parent reply other threads:[~2011-02-04 13:50 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-02-04 13:49 [Qemu-devel] [RFC][PATCH v6 00/04] qtest: qemu unit testing framework Michael Roth
2011-02-04 13:49 ` Michael Roth [this message]
2011-02-04 13:49 ` [Qemu-devel] [RFC][PATCH v1 2/4] qtest: basic test infrastructure and vl.c hooks Michael Roth
2011-02-04 13:49 ` [Qemu-devel] [RFC][PATCH v1 3/4] qtest: add basic rtc test module Michael Roth
2011-02-04 13:49 ` [Qemu-devel] [RFC][PATCH v1 4/4] qtest: build qtest and add -test <testname> cmdline opt Michael Roth
2011-02-09 19:42 ` [Qemu-devel] [RFC][PATCH v6 00/04] qtest: qemu unit testing framework Blue Swirl
2011-02-09 20:39 ` Michael Roth
2011-02-10 10:12 ` Stefan Hajnoczi
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=1296827392-1291-2-git-send-email-mdroth@linux.vnet.ibm.com \
--to=mdroth@linux.vnet.ibm.com \
--cc=agl@linux.vnet.ibm.com \
--cc=aliguori@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=ryanh@us.ibm.com \
--cc=stefanha@linux.vnet.ibm.com \
/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).