diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-05-24 12:11:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-24 12:11:15 +0200 |
| commit | 43bdc4c510b02d7f4e96d1213331c52cf925d714 (patch) | |
| tree | ad8b1dffcc7b07b91319afd7b1b780859dd8325c /test/test_all.py | |
| parent | 5dace179283f488f790c5508cf3e3f148b417f01 (diff) | |
| parent | a9768e386759d71de2c58a61e660308552574997 (diff) | |
| download | miasm-43bdc4c510b02d7f4e96d1213331c52cf925d714.tar.gz miasm-43bdc4c510b02d7f4e96d1213331c52cf925d714.zip | |
Merge pull request #1153 from aguinet/hack/div
Include missing functions from llvm's compiler-rt into Jitllvm
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_all.py b/test/test_all.py index a8bf5330..71eccc6f 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -17,6 +17,7 @@ from utils import cosmetics, multithread from multiprocessing import Queue is_win = platform.system() == "Windows" +is_64bit = platform.architecture()[0] == "64bit" testset = TestSet("../") TAGS = {"regression": "REGRESSION", # Regression tests @@ -112,7 +113,7 @@ for script in ["x86/sem.py", if jitter in blacklist.get(script, []): continue tags = [TAGS[jitter]] if jitter in TAGS else [] - if is_win and script.endswith("mn_div.py"): + if (not is_64bit) and script.endswith("mn_div.py"): continue testset += ArchUnitTest(script, jitter, base_dir="arch", tags=tags) |