diff options
| author | Camille Mougey <camille.mougey@cea.fr> | 2015-01-21 17:02:11 +0100 |
|---|---|---|
| committer | Camille Mougey <camille.mougey@cea.fr> | 2015-01-21 17:02:11 +0100 |
| commit | f780138be49336c7ba0f1b2fc9ecb1ea51753665 (patch) | |
| tree | a5aab422e54f6e006bad97ee3f57bf356d8d7c50 /test/test_all.py | |
| parent | 07b0d6320e0a0aa565bf8225ec4465326d66e86a (diff) | |
| download | miasm-f780138be49336c7ba0f1b2fc9ecb1ea51753665.tar.gz miasm-f780138be49336c7ba0f1b2fc9ecb1ea51753665.zip | |
Example/TestAll: Fix a typography (TAGS indirection must be used)
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index db4c2c6d..27ae8559 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -277,7 +277,7 @@ By default, no tag is ommited." % ", ".join(TAGS.keys()), default="") "'py-llvm 3.2' module is required for llvm tests" # Remove llvm tests - if "llvm" not in exclude_tags: + if TAGS["llvm"] not in exclude_tags: exclude_tags.append(TAGS["llvm"]) # Set callbacks |