diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-02-09 21:24:52 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2016-02-09 21:24:52 +0100 |
| commit | 0b03ea9205285d0b178076c06e52c8d66a8d3865 (patch) | |
| tree | e5103c7f9bb4f75a82ed3b08d0ddcf114693e527 | |
| parent | f094d9baffa31fc5c7d32e7999687509768031c8 (diff) | |
| parent | be44e295c7a155a3472ccdb40ee55f9512e4f940 (diff) | |
| download | miasm-0b03ea9205285d0b178076c06e52c8d66a8d3865.tar.gz miasm-0b03ea9205285d0b178076c06e52c8d66a8d3865.zip | |
Merge pull request #323 from a-vincent/remove_dead_files
Remove dead files
| -rw-r--r-- | miasm2/.hg_archival.txt | 5 | ||||
| -rw-r--r-- | miasm2/.hgtags | 2 | ||||
| -rw-r--r-- | miasm2/arch/exe64.bin | bin | 370176 -> 0 bytes | |||
| -rw-r--r-- | test/arch/x86/arch.py | 15 |
4 files changed, 2 insertions, 20 deletions
diff --git a/miasm2/.hg_archival.txt b/miasm2/.hg_archival.txt deleted file mode 100644 index 6d5aba4b..00000000 --- a/miasm2/.hg_archival.txt +++ /dev/null @@ -1,5 +0,0 @@ -repo: 9bf379ebc5306f0ac03e1736966188d062a2723c -node: edd167467676cc9f096d766373001952f178b725 -branch: default -latesttag: asm/dis ok -latesttagdistance: 228 diff --git a/miasm2/.hgtags b/miasm2/.hgtags deleted file mode 100644 index 81b57c03..00000000 --- a/miasm2/.hgtags +++ /dev/null @@ -1,2 +0,0 @@ -07f301ad2a5a7457fbb350aa50c8084ee1394274 v0.01 -844c086c637a15263bc4aea10a0b2a8efa280062 asm/dis ok diff --git a/miasm2/arch/exe64.bin b/miasm2/arch/exe64.bin deleted file mode 100644 index d7b5256b..00000000 --- a/miasm2/arch/exe64.bin +++ /dev/null Binary files differdiff --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:] |