diff options
| author | Camille Mougey <commial@gmail.com> | 2016-04-19 17:11:20 +0200 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-04-19 17:11:20 +0200 |
| commit | 79e03f015430386c3bae2f1ce56fbb9b12831536 (patch) | |
| tree | 84fa57aa0cc589dd7eb579a2d9927e611671e361 /test/arch/x86/unit/mn_strings.py | |
| parent | 8fff094b010db48e661e926d19536457ca5f86c1 (diff) | |
| parent | ef5631fd7449f547011f9239870f69fcdd0d1f95 (diff) | |
| download | miasm-79e03f015430386c3bae2f1ce56fbb9b12831536.tar.gz miasm-79e03f015430386c3bae2f1ce56fbb9b12831536.zip | |
Merge pull request #353 from serpilliere/fix_pusha16
Fix pusha16
Diffstat (limited to 'test/arch/x86/unit/mn_strings.py')
| -rw-r--r-- | test/arch/x86/unit/mn_strings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/arch/x86/unit/mn_strings.py b/test/arch/x86/unit/mn_strings.py index db52fa74..f8055665 100644 --- a/test/arch/x86/unit/mn_strings.py +++ b/test/arch/x86/unit/mn_strings.py @@ -1,7 +1,7 @@ #! /usr/bin/env python -from asm_test import Asm_Test +from asm_test import Asm_Test_32 -class Test_SCAS(Asm_Test): +class Test_SCAS(Asm_Test_32): MYSTRING = "test string" TXT = ''' main: @@ -22,7 +22,7 @@ class Test_SCAS(Asm_Test): assert(self.myjit.cpu.EDI == self.myjit.ir_arch.symbol_pool.getby_name('mystr').offset + len(self.MYSTRING)+1) -class Test_MOVS(Asm_Test): +class Test_MOVS(Asm_Test_32): MYSTRING = "test string" TXT = ''' main: |