diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-06-21 18:24:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-21 18:24:32 +0200 |
| commit | 81a54b95a1424da691e6bb5a9f015aefda1325d7 (patch) | |
| tree | 9185e2f1ac535c60be3b01cc99ff77ff37c5b885 /test/arch/mips32/arch.py | |
| parent | 02bd29be2d3fc6fc0429fa9c11ce6902bbd535f0 (diff) | |
| parent | b8d5b255bad4b03c57356c9af474e6d8a12105db (diff) | |
| download | miasm-81a54b95a1424da691e6bb5a9f015aefda1325d7.tar.gz miasm-81a54b95a1424da691e6bb5a9f015aefda1325d7.zip | |
Merge pull request #781 from commial/fix/code-cleaning
Code cleaning: remove useless / commented code
Diffstat (limited to 'test/arch/mips32/arch.py')
| -rw-r--r-- | test/arch/mips32/arch.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/arch/mips32/arch.py b/test/arch/mips32/arch.py index c6b68c0c..6fc36d13 100644 --- a/test/arch/mips32/arch.py +++ b/test/arch/mips32/arch.py @@ -228,13 +228,9 @@ for s, l in reg_tests_mips32: print s print mn assert(str(mn) == s) - # print hex(b) - # print [str(x.get()) for x in mn.args] l = mn_mips32.fromstring(s, symbol_pool, 'b') - # print l assert(str(l) == s) a = mn_mips32.asm(l, 'b') print [x for x in a] print repr(b) - # print mn.args assert(b in a) |