From 9bae953cbb3dcd4af94f13ead66123f71ed80935 Mon Sep 17 00:00:00 2001 From: Adrien Guinet Date: Mon, 17 Jun 2019 18:16:48 +0200 Subject: [PATCH] Use llvmlite 0.29.0, which seems to fix the remaining issues under Windows --- optional_requirements.txt | 2 +- test/test_all.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/optional_requirements.txt b/optional_requirements.txt index 88d091706..b8c204725 100644 --- a/optional_requirements.txt +++ b/optional_requirements.txt @@ -1,3 +1,3 @@ pycparser z3-solver==4.5.1.0 -llvmlite==0.26.0 +llvmlite==0.29.0 diff --git a/test/test_all.py b/test/test_all.py index ce223211a..a22fdf1ed 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -110,8 +110,6 @@ def __init__(self, script, jitter ,*args, **kwargs): if jitter in blacklist.get(script, []): continue tags = [TAGS[jitter]] if jitter in TAGS else [] - if is_win and script.endswith("mn_div.py"): - continue testset += ArchUnitTest(script, jitter, base_dir="arch", tags=tags) testset += ArchUnitTest("x86/unit/access_xmm.py", "python", base_dir="arch", tags=[TAGS["python"]])