From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51325) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUjUE-0006sw-Uz for qemu-devel@nongnu.org; Mon, 31 Mar 2014 17:11:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WUjU4-0006Dx-Ru for qemu-devel@nongnu.org; Mon, 31 Mar 2014 17:11:18 -0400 Received: from cantor2.suse.de ([195.135.220.15]:49301 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUjU4-0006DW-LV for qemu-devel@nongnu.org; Mon, 31 Mar 2014 17:11:08 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Mon, 31 Mar 2014 23:10:46 +0200 Message-Id: <1396300262-10430-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL for-2.0 00/16] QOM devices patch queue 2014-03-31 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Anthony Liguori , Stefan Weil , Keith Busch , Stefan Hajnoczi , Paolo Bonzini , =?UTF-8?q?Andreas=20F=C3=A4rber?= Hello Peter, This is my QOM (devices) patch queue. Please pull. Regards, Andreas Cc: Peter Maydell Cc: Anthony Liguori Cc: Stefan Hajnoczi Cc: Stefan Weil Cc: Keith Busch Cc: Paolo Bonzini The following changes since commit 58b590148ca1b19f64f533d40e32b5acce5c21= e7: pci: Fix clearing IRQs on reset (2014-03-31 19:53:34 +0100) are available in the git repository at: git://github.com/afaerber/qemu-cpu.git tags/qom-devices-for-2.0 for you to fetch changes up to 7373fc76930fc0994bab1bc2defd1d3a2b2adaa3: tmp105-test: Test QOM property and precision (2014-03-31 23:03:14 +0200= ) ---------------------------------------------------------------- QOM/QTest infrastructure fixes * Revised QTest SIGABRT fix * Test cleanups for non-POSIX hosts * QTest test cases for NVMe, virtio-9p, pvpanic, i82801b11 * QTest API addition for reading events * TMP105 fix and regression test ---------------------------------------------------------------- Andreas F=C3=A4rber (7): nvme: Permit zero-length block devices tests: Add nvme qtest tests: Add virtio-9p qtest tests: Add pvpanic qtest qtest: Factor out qtest_qmp_receive() pvpanic-test: Assert pause event tests: Add i82801b11 qtest Paolo Bonzini (4): tmp105: Read temperature in milli-celsius tmp105-test: Wrap simple building blocks for testing tmp105-test: Add a second sensor and test that one tmp105-test: Test QOM property and precision Stefan Hajnoczi (4): Revert "qtest: Fix crash if SIGABRT during qtest_init()" qtest: Keep list of qtest instances for SIGABRT handler tests: Skip POSIX-only tests on Windows tests: Correctly skip qtest on non-POSIX hosts Stefan Weil (1): tests: Remove unsupported tests for MinGW MAINTAINERS | 2 + hw/block/nvme.c | 4 +- hw/misc/tmp105.c | 8 +-- tests/Makefile | 23 +++++++-- tests/i82801b11-test.c | 33 ++++++++++++ tests/libqtest.c | 65 ++++++++++++++++------- tests/libqtest.h | 22 +++++++- tests/nvme-test.c | 34 +++++++++++++ tests/pvpanic-test.c | 47 +++++++++++++++++ tests/test-aio.c | 16 ++++++ tests/tmp105-test.c | 136 +++++++++++++++++++++++++++++++++++++++++--= ------ tests/virtio-9p-test.c | 46 +++++++++++++++++ 12 files changed, 388 insertions(+), 48 deletions(-) create mode 100644 tests/i82801b11-test.c create mode 100644 tests/nvme-test.c create mode 100644 tests/pvpanic-test.c create mode 100644 tests/virtio-9p-test.c