diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2016-01-18 16:25:35 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2016-01-18 16:25:35 +0100 |
| commit | d49e05f1aef8da814fa7bfc1b99e7051e51db0b0 (patch) | |
| tree | 0141677568133df85287f225ed5703df03352214 /test/test_all.py | |
| parent | 6c879d5e03fdfa973b0695cf8259231f09895bf9 (diff) | |
| parent | b421c5059f2a7bfd47b5bdf4c3488a3e8bda5b40 (diff) | |
| download | miasm-d49e05f1aef8da814fa7bfc1b99e7051e51db0b0.tar.gz miasm-d49e05f1aef8da814fa7bfc1b99e7051e51db0b0.zip | |
Merge pull request #284 from fmonjalet/feature_memstruct
Feature MemStruct
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index bc019104..6a619948 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -191,6 +191,7 @@ for script in ["interval.py", "parse_asm.py", "utils.py", "sembuilder.py", + "types.py", ]: testset += RegressionTest([script], base_dir="core") ## Expression @@ -482,6 +483,8 @@ for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []), testset += ExampleJitter(script + ["--jitter", jitter], depends=dep, tags=tags) +testset += ExampleJitter(["types.py"]) + if __name__ == "__main__": # Argument parsing |