diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-18 08:58:23 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-11-18 08:58:23 +0100 |
| commit | a5e4ab020dcdf2181c70d0878f5643996ff9387f (patch) | |
| tree | d1cb719c3fc1b7a7ac13e34cde3cc037649f9dea /test/test_all.py | |
| parent | 87c3fe46c6fbc5649b3a06d91bedfabbe3f11009 (diff) | |
| parent | 96cb0ef19332ec5069c445da34fa75306d609c8c (diff) | |
| download | miasm-a5e4ab020dcdf2181c70d0878f5643996ff9387f.tar.gz miasm-a5e4ab020dcdf2181c70d0878f5643996ff9387f.zip | |
Merge pull request #279 from commial/fix-x86-misc
Fix x86 misc
Diffstat (limited to '')
| -rw-r--r-- | test/test_all.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py index 8c1cf3f8..c449ef33 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -13,6 +13,7 @@ TAGS = {"regression": "REGRESSION", # Regression tests "long": "LONG", # Very time consumming tests "llvm": "LLVM", # LLVM dependency is required "z3": "Z3", # Z3 dependecy is needed + "qemu": "QEMU", # QEMU tests (several tests) } # Regression tests @@ -71,6 +72,8 @@ class QEMUTest(RegressionTest): "--jitter", jitter, ] + self.tags.append(TAGS["qemu"]) + # Test name -> supported jitter engines QEMU_TESTS = { @@ -110,9 +113,9 @@ QEMU_TESTS = { "bcd": ("tcc", "python"), "xchg": ("tcc", "python"), "string": ("tcc", "python"), + "misc": ("tcc", "python"), # Unsupported - # "floats", "misc", "segs", "code16", "exceptions", - # "single_step" + # "floats", "segs", "code16", "exceptions", "single_step" } |