diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-02-16 16:36:43 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2016-02-16 16:36:43 +0100 |
| commit | 91e9abd906c0a9f5b43bad5b9789ffa1b054f6fe (patch) | |
| tree | 30f32695bc995a4cd56f902313aad3a1d4a411f4 /test/test_all.py | |
| parent | 2cf69707481ba4b0dd163b49d99bc9a021162944 (diff) | |
| parent | 052c02757c8c7aecabb9d86c30dfd672e46ccfa4 (diff) | |
| download | miasm-91e9abd906c0a9f5b43bad5b9789ffa1b054f6fe.tar.gz miasm-91e9abd906c0a9f5b43bad5b9789ffa1b054f6fe.zip | |
Merge pull request #325 from commial/jitter-symbexec
Eval_Expr in jitter context
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | 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 9d7c1256..adee5f2d 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -242,6 +242,12 @@ testset += RegressionTest(["depgraph.py"], base_dir="analysis", (14, 1), (15, 1))) for fname in fnames]) +## Jitter +for script in ["jitload.py", + ]: + testset += RegressionTest([script], base_dir="jitter") + + # Examples class Example(Test): """Examples specificities: |