Signed-off-by: Mohammed Gamal <[email protected]>
---
 x86/realmode.c |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

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))
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to