diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2014-03-13 21:50:39 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2014-03-13 21:50:40 +0000 |
commit | b19fc63cadb2815d5bcb1ec25b22849e455cbb31 (patch) | |
tree | 2b673750f06a40b9e78d5ed8142e6f8e49936a93 /stubs | |
parent | 90c5d39cb847d7f360454950be647cd83cacea58 (diff) | |
parent | 01c22f2cdd4fcf02276ea10f48253850a5fd7259 (diff) | |
download | qemu-b19fc63cadb2815d5bcb1ec25b22849e455cbb31.zip qemu-b19fc63cadb2815d5bcb1ec25b22849e455cbb31.tar.gz qemu-b19fc63cadb2815d5bcb1ec25b22849e455cbb31.tar.bz2 |
Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-2.0' into staging
QOM/QTest infrastructure fixes
* QOM cast fix for virtserialport and regression test
* QTest error handling fix
* QTest output cleanup
# gpg: Signature made Thu 13 Mar 2014 20:43:34 GMT using RSA key ID 3E7E013F
# gpg: Good signature from "Andreas Färber <afaerber@suse.de>"
# gpg: aka "Andreas Färber <afaerber@suse.com>"
* remotes/afaerber/tags/qom-devices-for-2.0:
main-loop: Suppress "I/O thread spun" warnings for qtest
qtest: Fix crash if SIGABRT during qtest_init()
virtio-console-test: Test virtserialport as well
virtio-console: Fix VIRTIO_CONSOLE() cast macro
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/Makefile.objs | 1 | ||||
-rw-r--r-- | stubs/qtest.c | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index df3aa7a..59c5a54 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -18,6 +18,7 @@ stub-obj-y += mon-print-filename.o stub-obj-y += mon-protocol-event.o stub-obj-y += mon-set-error.o stub-obj-y += pci-drive-hot-add.o +stub-obj-y += qtest.o stub-obj-y += reset.o stub-obj-y += set-fd-handler.o stub-obj-y += slirp.o diff --git a/stubs/qtest.c b/stubs/qtest.c new file mode 100644 index 0000000..e671ed8 --- /dev/null +++ b/stubs/qtest.c @@ -0,0 +1,14 @@ +/* + * qtest stubs + * + * Copyright (c) 2014 Linaro Limited + * Written by Peter Maydell + * + * 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-common.h" + +/* Needed for qtest_allowed() */ +bool qtest_allowed; |