diff mbox

test: Add realmode test for stc instruction

Message ID 1281012202-22063-1-git-send-email-m.gamal005@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Mohammed Gamal Aug. 5, 2010, 12:43 p.m. UTC
None
diff mbox

Patch

diff --git a/x86/realmode.c b/x86/realmode.c
index 7534da5..ead5021 100644
--- a/x86/realmode.c
+++ b/x86/realmode.c
@@ -462,6 +462,7 @@  void test_eflags_insn(void)
 {
 	struct regs inregs = { 0 }, outregs;
 	MK_INSN(clc, "clc");
+	MK_INSN(stc, "stc");
 	MK_INSN(cli, "cli");
 	MK_INSN(sti, "sti");
 	MK_INSN(cld, "cld");
@@ -476,6 +477,14 @@  void test_eflags_insn(void)
 		print_serial("clc test: PASS\n");
 
 	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_stc,
+			      insn_stc_end - insn_stc);
+	if (!(outregs.eflags & 1))
+		print_serial("stc test: FAIL\n");
+	else
+		print_serial("stc test: PASS\n");
+
+	exec_in_big_real_mode(&inregs, &outregs,
 			      insn_cli,
 			      insn_cli_end - insn_cli);
 	if (outregs.eflags & (1 << 9))