From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:53972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoWbv-0000jq-1R for qemu-devel@nongnu.org; Tue, 10 Jul 2012 05:20:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoWbk-0004Jt-FW for qemu-devel@nongnu.org; Tue, 10 Jul 2012 05:19:58 -0400 Received: from oxygen.pond.sub.org ([78.46.104.156]:58062) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoWbk-0004JI-9D for qemu-devel@nongnu.org; Tue, 10 Jul 2012 05:19:48 -0400 From: Markus Armbruster Date: Tue, 10 Jul 2012 11:12:52 +0200 Message-Id: <1341911575-7306-27-git-send-email-armbru@redhat.com> In-Reply-To: <1341911575-7306-1-git-send-email-armbru@redhat.com> References: <1341911575-7306-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH v3 26/29] qtest: Test we don't put hard disk info into CMOS for a CD-ROM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, blauwirbel@gmail.com, stefanha@linux.vnet.ibm.com, pbonzini@redhat.com Signed-off-by: Markus Armbruster --- tests/hd-geo-test.c | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/tests/hd-geo-test.c b/tests/hd-geo-test.c index 5d9d2e4..9a31e85 100644 --- a/tests/hd-geo-test.c +++ b/tests/hd-geo-test.c @@ -369,6 +369,27 @@ static void test_ide_device_user_chst(void) test_ide_drive_user("ide-hd", true); } +/* + * Test case: IDE devices (if=ide), but use index=0 for CD-ROM + */ +static void test_ide_drive_cd_0(void) +{ + char *argv[256]; + int argc, ide_idx; + Backend i; + + argc = setup_common(argv, ARRAY_SIZE(argv)); + for (i = 0; i <= backend_empty; i++) { + ide_idx = backend_empty - i; + cur_ide[ide_idx] = &hd_chst[i][mbr_blank]; + argc = setup_ide(argc, argv, ARRAY_SIZE(argv), + ide_idx, NULL, i, mbr_blank, ""); + } + qtest_start(g_strjoinv(" ", argv)); + test_cmos(); + qtest_quit(global_qtest); +} + int main(int argc, char **argv) { Backend i; @@ -390,6 +411,7 @@ int main(int argc, char **argv) qtest_add_func("hd-geo/ide/drive/mbr/chs", test_ide_drive_mbr_chs); qtest_add_func("hd-geo/ide/drive/user/chs", test_ide_drive_user_chs); qtest_add_func("hd-geo/ide/drive/user/chst", test_ide_drive_user_chst); + qtest_add_func("hd-geo/ide/drive/cd_0", test_ide_drive_cd_0); qtest_add_func("hd-geo/ide/device/mbr/blank", test_ide_device_mbr_blank); qtest_add_func("hd-geo/ide/device/mbr/lba", test_ide_device_mbr_lba); qtest_add_func("hd-geo/ide/device/mbr/chs", test_ide_device_mbr_chs); -- 1.7.6.5