From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54328) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZA6hu-0001Xr-AZ for qemu-devel@nongnu.org; Tue, 30 Jun 2015 21:20:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZA6ht-0008AZ-BS for qemu-devel@nongnu.org; Tue, 30 Jun 2015 21:20:58 -0400 From: John Snow Date: Tue, 30 Jun 2015 21:20:39 -0400 Message-Id: <1435713640-12362-10-git-send-email-jsnow@redhat.com> In-Reply-To: <1435713640-12362-1-git-send-email-jsnow@redhat.com> References: <1435713640-12362-1-git-send-email-jsnow@redhat.com> Subject: [Qemu-devel] [RFC 09/10] qtest/fdc: Support for 2.88MB drives List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-block@nongnu.org Cc: kwolf@redhat.com, John Snow , armbru@redhat.com, qemu-devel@nongnu.org The old test assumes a 1.44MB drive. Assert that the QEMU default drive is now either 1.44 or 2.88. Signed-off-by: John Snow --- tests/fdc-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fdc-test.c b/tests/fdc-test.c index 416394f..7c47385 100644 --- a/tests/fdc-test.c +++ b/tests/fdc-test.c @@ -267,7 +267,7 @@ static void test_cmos(void) uint8_t cmos; cmos = cmos_read(CMOS_FLOPPY); - g_assert(cmos == 0x40); + g_assert(cmos == 0x40 || cmos == 0x50); } static void test_no_media_on_start(void) -- 2.1.0