diff options
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test_all.py b/test/test_all.py index 62f1cd4b..78e97be1 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -55,7 +55,7 @@ class ArchUnitTest(RegressionTest): # script -> blacklisted jitter blacklist = { - "x86/unit/mn_float.py": ["python"], + "x86/unit/mn_float.py": ["python", "llvm"], } for script in ["x86/sem.py", "x86/unit/mn_strings.py", @@ -684,7 +684,7 @@ By default, no tag is omitted." % ", ".join(TAGS.keys()), default="") # Handle llvm modularity llvm = True try: - import llvm + import llvmlite except ImportError: llvm = False @@ -695,9 +695,6 @@ By default, no tag is omitted." % ", ".join(TAGS.keys()), default="") except ImportError: tcc = False - # TODO XXX: fix llvm jitter (deactivated for the moment) - llvm = False - if llvm is False: print "%(red)s[LLVM]%(end)s Python" % cosmetics.colors + \ "'py-llvm 3.2' module is required for llvm tests" |