diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2016-02-09 10:20:13 +0100 |
|---|---|---|
| committer | Aymeric Vincent <vincent@labri.fr> | 2016-02-09 19:57:47 +0100 |
| commit | be44e295c7a155a3472ccdb40ee55f9512e4f940 (patch) | |
| tree | e5103c7f9bb4f75a82ed3b08d0ddcf114693e527 /test/arch/x86/arch.py | |
| parent | c542345c5b77e32ad17eeeffeebc248aaab15cd2 (diff) | |
| download | miasm-be44e295c7a155a3472ccdb40ee55f9512e4f940.tar.gz miasm-be44e295c7a155a3472ccdb40ee55f9512e4f940.zip | |
remove old ida workaround executable for the 64bit case
Diffstat (limited to 'test/arch/x86/arch.py')
| -rw-r--r-- | test/arch/x86/arch.py | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 6d20d473..49cfacf4 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -2907,22 +2907,11 @@ reg_tests = [ # print time.time()-t # reg_tests = reg_tests[-1:] -fname64 = ('exe64.bin', 'r+') -if not os.access(fname64[0], os.R_OK): - fname64 = ('regression_test64_ia32.bin', 'w') - test_file = {16: open('regression_test16_ia32.bin', 'w'), 32: open('regression_test32_ia32.bin', 'w'), - # 64:open('regression_test64_ia32.bin', 'w+')} - # 64:open('testmnemo', 'r+')} - 64: open(*fname64)} + 64: open('regression_test64_ia32.bin', 'w')} + # 64: open('testmnemo', 'r+')} ts = time.time() -# test_file[16].write("\x90"*0x10000) -# test_file[32].write("\x90"*0x10000) -file64off = 0x2524c -test_file[64].seek(0x400) -test_file[64].write('\x90' * 0x30000) -test_file[64].seek(file64off) for mode, s, l, in reg_tests: print "-" * 80 s = s[12:] |