diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-07-21 22:40:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-21 22:40:52 +0200 |
| commit | a1c2dcbf6c4f3191984a781119d131c7c7f8d9ad (patch) | |
| tree | e90ca108dd1c130d015a3960051276d2c58d233a /test/test_all.py | |
| parent | 6ccbedd2928d52aff605ede73adbdfadb6152582 (diff) | |
| parent | 82c5d696eb97b5816a276cbf9708d0b3602d7055 (diff) | |
| download | miasm-a1c2dcbf6c4f3191984a781119d131c7c7f8d9ad.tar.gz miasm-a1c2dcbf6c4f3191984a781119d131c7c7f8d9ad.zip | |
Merge pull request #1267 from serpilliere/int_expr_arg
Int expr arg
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_all.py b/test/test_all.py index 71eccc6f..2670761b 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -305,7 +305,8 @@ testset += SemanticTestExec("x86_32", "PE", 0x401000, ["bsr_bsf"], depends=[test_x86_32_bsr_bsf]) ## Core -for script in ["interval.py", +for script in ["modint.py", + "interval.py", "graph.py", "parse_asm.py", "utils.py", @@ -318,8 +319,7 @@ testset += RegressionTest(["asmblock.py"], base_dir="core", products=["graph.dot", "graph2.dot", "graph3.dot", "graph4.dot"]) ## Expression -for script in ["modint.py", - "expression.py", +for script in ["expression.py", "stp.py", "simplifications.py", "expression_helper.py", |