From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37975) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsbHu-0004zC-BO for qemu-devel@nongnu.org; Thu, 05 Jun 2014 13:17:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsbHo-0007jM-Hn for qemu-devel@nongnu.org; Thu, 05 Jun 2014 13:17:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38907) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsbHo-0007jH-3t for qemu-devel@nongnu.org; Thu, 05 Jun 2014 13:17:08 -0400 Date: Thu, 5 Jun 2014 20:17:28 +0300 From: "Michael S. Tsirkin" Message-ID: <1401986505-12359-8-git-send-email-mst@redhat.com> References: <1401986505-12359-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1401986505-12359-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 07/10] tests: rename acpi-test to bios-tables-test List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Anthony Liguori , Gabriel Somlo , Markus Armbruster , "Gabriel L. Somlo" , Stefan Hajnoczi , Anthony Liguori , =?us-ascii?B?PT9VVEYtOD9xP0FuZHJlYXM9MjBGPUMzPUE0cmJlcj89?= From: "Gabriel L. Somlo" The test harness for acpi (generating a boot disk, starting qemu, waiting for the BIOS to finish booting before examining guest memory, etc.) is perfectly suited for testing other bios tables beside acpi, such as e.g., smbios. This patch renames acpi-test to bios-tables-test to reflect that, and in preparation for adding smbios tests. Signed-off-by: Gabriel Somlo Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/{acpi-test.c => bios-tables-test.c} | 0 tests/Makefile | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename tests/{acpi-test.c => bios-tables-test.c} (100%) diff --git a/tests/acpi-test.c b/tests/bios-tables-test.c similarity index 100% rename from tests/acpi-test.c rename to tests/bios-tables-test.c diff --git a/tests/Makefile b/tests/Makefile index 9f7ca61..ba93e8a1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -131,7 +131,7 @@ check-qtest-i386-y += tests/ide-test$(EXESUF) check-qtest-i386-y += tests/hd-geo-test$(EXESUF) gcov-files-i386-y += hw/block/hd-geometry.c check-qtest-i386-y += tests/boot-order-test$(EXESUF) -check-qtest-i386-y += tests/acpi-test$(EXESUF) +check-qtest-i386-y += tests/bios-tables-test$(EXESUF) check-qtest-i386-y += tests/rtc-test$(EXESUF) check-qtest-i386-y += tests/i440fx-test$(EXESUF) check-qtest-i386-y += tests/fw_cfg-test$(EXESUF) @@ -286,7 +286,7 @@ tests/fdc-test$(EXESUF): tests/fdc-test.o tests/ide-test$(EXESUF): tests/ide-test.o $(libqos-pc-obj-y) tests/hd-geo-test$(EXESUF): tests/hd-geo-test.o tests/boot-order-test$(EXESUF): tests/boot-order-test.o $(libqos-obj-y) -tests/acpi-test$(EXESUF): tests/acpi-test.o $(libqos-obj-y) +tests/bios-tables-test$(EXESUF): tests/bios-tables-test.o $(libqos-obj-y) tests/tmp105-test$(EXESUF): tests/tmp105-test.o $(libqos-omap-obj-y) tests/i440fx-test$(EXESUF): tests/i440fx-test.o $(libqos-pc-obj-y) tests/fw_cfg-test$(EXESUF): tests/fw_cfg-test.o $(libqos-pc-obj-y) -- MST