about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorgg <gg@quarkslab.com>2015-02-20 20:51:17 +0100
committergg <gg@quarkslab.com>2015-02-20 20:51:17 +0100
commitc37fd6a238c617d1ca9a29871a229a64ba14b41e (patch)
treea062d34aacc6e6f3692cb6b92567a29081500d93
parentf1b008f62ce9bb16e531ec97a8e763643d8265b4 (diff)
downloadmiasm-c37fd6a238c617d1ca9a29871a229a64ba14b41e.tar.gz
miasm-c37fd6a238c617d1ca9a29871a229a64ba14b41e.zip
Fixed regression tests for PUSHFW and POPFW
-rw-r--r--test/arch/x86/arch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py
index 5a87012f..16a0794a 100644
--- a/test/arch/x86/arch.py
+++ b/test/arch/x86/arch.py
@@ -1111,7 +1111,7 @@ reg_tests = [
     (m32, "00000000    POPAD",
      "61"),
 
-    (m16, "00000000    POPF",
+    (m16, "00000000    POPFW",
      "9d"),
     (m32, "00000000    POPFD",
      "9d"),
@@ -1179,7 +1179,7 @@ reg_tests = [
     (m32, "00000000    PUSHAD",
      "60"),
 
-    (m16, "00000000    PUSHF",
+    (m16, "00000000    PUSHFW",
      "9c"),
     (m32, "00000000    PUSHFD",
      "9c"),