diff mbox

test long JMP emulation

Message ID 20090405070515.GI4013@redhat.com (mailing list archive)
State Accepted
Headers show

Commit Message

Gleb Natapov April 5, 2009, 7:05 a.m. UTC
Goes on top of Jcc tests patch.

Signed-off-by: Gleb Natapov <gleb@redhat.com>
--
			Gleb.
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Avi Kivity April 5, 2009, 12:44 p.m. UTC | #1
Gleb Natapov wrote:
> Goes on top of Jcc tests patch.
>
>   

Applied, thanks.
diff mbox

Patch

diff --git a/user/test/x86/realmode.c b/user/test/x86/realmode.c
index 336ba1c..755b5d1 100644
--- a/user/test/x86/realmode.c
+++ b/user/test/x86/realmode.c
@@ -451,6 +451,23 @@  void test_jcc_near(void)
 		print_serial("JMP near Test 1: FAIL\n");
 }
 
+void test_long_jmp()
+{
+	struct regs inregs = { 0 }, outregs;
+	u32 esp[16];
+
+	inregs.esp = (u32)esp;
+	MK_INSN(long_jmp, "call 1f\n\t"
+			  "jmp 2f\n\t"
+			  "1: jmp $0, $test_function\n\t"
+		          "2:\n\t");
+	exec_in_big_real_mode(&inregs, &outregs,
+			      insn_long_jmp,
+			      insn_long_jmp_end - insn_long_jmp);
+	if(!regs_equal(&inregs, &outregs, R_AX) || outregs.eax != 0x1234)
+		print_serial("Long JMP Test: FAIL\n");
+}
+
 void test_null(void)
 {
 	struct regs inregs = { 0 }, outregs;
@@ -473,6 +490,8 @@  void start(void)
 	test_jcc_near();
 	/* test_call() uses short jump so call it after testing jcc */
 	test_call();
+	/* long jmp test uses call near so test it after testing call */
+	test_long_jmp();
 
 	exit(0);
 }