diff options
| author | Ajax <commial@gmail.com> | 2015-11-17 15:52:11 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-11-17 16:04:43 +0100 |
| commit | 96cb0ef19332ec5069c445da34fa75306d609c8c (patch) | |
| tree | d1cb719c3fc1b7a7ac13e34cde3cc037649f9dea /test/test_all.py | |
| parent | ded47deaf434ea3d6e2b5e0bdf0012c5a6eb41db (diff) | |
| download | miasm-96cb0ef19332ec5069c445da34fa75306d609c8c.tar.gz miasm-96cb0ef19332ec5069c445da34fa75306d609c8c.zip | |
TestALL: add a new tag 'qemu', avoiding QEMU tests
On my testing machine: 42s to 3m40s
Diffstat (limited to '')
| -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 5c6bbbb2..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 = { |