From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37030) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Urq9D-0004E1-8K for qemu-devel@nongnu.org; Wed, 26 Jun 2013 09:52:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Urq98-0007Ek-5B for qemu-devel@nongnu.org; Wed, 26 Jun 2013 09:52:35 -0400 Received: from oxygen.pond.sub.org ([2a01:4f8:121:10e4::3]:35321) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Urq97-0007Du-V7 for qemu-devel@nongnu.org; Wed, 26 Jun 2013 09:52:30 -0400 From: Markus Armbruster Date: Wed, 26 Jun 2013 15:52:11 +0200 Message-Id: <1372254743-15808-1-git-send-email-armbru@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v4 00/12] Boot order tests List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, jan.kiszka@siemens.com, mjt@tls.msk.ru, alex.williamson@redhat.com, aviksil@linux.vnet.ibm.com, afaerber@suse.de v4: * Old PATCH 1-6 got merged, only tests left; cover letter changed accordingly * PATCH 1,6 unchanged * PATCH 2 fix system-reset race (Anthony) * New PATCH 4,11 to make libqos/fw_cfg usable for the ppc, Sun4 tests * New PATCH 3 shanghaied from Anthony, to make PATCH 4 compile without make clean. * PATCH 5,10,12 use libqos/fw_cfg (Anthony) * PATCH 7-9 rebased, minor tweaks v3: * Rebased, with only trivial conflicts * PATCH 08 cosmetic improvements * More test cases: new PATCH 09-16 v2: * New PATCH 7 to make testing -boot once possible * Old PATCH 5 reworked and extended became PATCH 8 * Writing more tests uncovered -no-fd-bootchk weirdness, cleaned up in new PATCH 5+6 Andreas F=C3=A4rber (1): boot-order-test: Add tests for PowerMacs Anthony Liguori (1): libqos: include dependencies Markus Armbruster (10): qtest: Don't reset on qtest chardev connect boot-order-test: New; covering just PC for now libqos: Add support for memory-mapped fw_cfg boot-order-test: Cover -boot once in ppc tests boot-order-test: Better separate target-specific and generic parts boot-order-test: Code motion for better readability boot-order-test: Add tests for PowerPC PREP boot-order-test: Add tests for Sun4m libqos: Generalize I/O-mapped fw_cfg boot-order-test: Add tests for Sun4u qtest.c | 7 +- tests/Makefile | 7 +- tests/boot-order-test.c | 209 +++++++++++++++++++++++++++++++++++++++++= ++++++ tests/fw_cfg-test.c | 2 +- tests/libqos/fw_cfg-pc.c | 40 --------- tests/libqos/fw_cfg-pc.h | 20 ----- tests/libqos/fw_cfg.c | 55 +++++++++++++ tests/libqos/fw_cfg.h | 9 ++ tests/libqos/malloc-pc.c | 2 +- 9 files changed, 287 insertions(+), 64 deletions(-) create mode 100644 tests/boot-order-test.c delete mode 100644 tests/libqos/fw_cfg-pc.c delete mode 100644 tests/libqos/fw_cfg-pc.h --=20 1.7.11.7