diff options
| author | Ajax <commial@gmail.com> | 2017-04-18 13:47:56 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-04-18 16:09:05 +0200 |
| commit | 598e65a66bc817ebf6009ae5c33a584bedced99e (patch) | |
| tree | fa6f2f11b2f7951e17547a4bef70514d763e3a79 /test/test_all.py | |
| parent | 42f11e5aa8c49b4b1e0587dfe49c354778d342c4 (diff) | |
| download | miasm-598e65a66bc817ebf6009ae5c33a584bedced99e.tar.gz miasm-598e65a66bc817ebf6009ae5c33a584bedced99e.zip | |
Add regression test for DSE on lbl_gen
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 633798f0..48ce76ba 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -277,6 +277,12 @@ testset += RegressionTest(["depgraph.py"], base_dir="analysis", (14, 1), (15, 1)) ]) testset += RegressionTest(["modularintervals.py"], base_dir="analysis") +for jitter in ArchUnitTest.jitter_engines: + if jitter in blacklist.get(script, []): + continue + tags = [TAGS[jitter]] if jitter in TAGS else [] + testset += RegressionTest(["dse.py", jitter], base_dir="analysis", tags=tags) + testset += RegressionTest(["range.py"], base_dir="analysis", tags=[TAGS["z3"]]) |