diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-07-21 15:37:39 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2020-07-21 16:47:59 +0200 |
| commit | 82c5d696eb97b5816a276cbf9708d0b3602d7055 (patch) | |
| tree | e90ca108dd1c130d015a3960051276d2c58d233a /test/test_all.py | |
| parent | 9bf0f4c1c14d318110b56df6952b0fcc2950539e (diff) | |
| download | miasm-82c5d696eb97b5816a276cbf9708d0b3602d7055.tar.gz miasm-82c5d696eb97b5816a276cbf9708d0b3602d7055.zip | |
Move modint in core
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", |