-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
llvmlite v0.39.0 #62
llvmlite v0.39.0 #62
Changes from all commits
da79b6a
9ea9f1b
e9e3667
a1902ef
3ca8d68
1e0b084
d9cde1b
8cdcd20
929c357
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
From e3648a827115539c368ee13d8b791f45d1afea69 Mon Sep 17 00:00:00 2001 | ||
From: John Kirkham <jakirkham@gmail.com> | ||
Date: Fri, 12 Aug 2022 09:31:14 -0700 | ||
Subject: [PATCH] Disable `test_libm` on macOS | ||
|
||
--- | ||
llvmlite/tests/test_binding.py | 9 +++------ | ||
1 file changed, 3 insertions(+), 6 deletions(-) | ||
|
||
diff --git a/llvmlite/tests/test_binding.py b/llvmlite/tests/test_binding.py | ||
index 28b2f5f..b3018c8 100644 | ||
--- a/llvmlite/tests/test_binding.py | ||
+++ b/llvmlite/tests/test_binding.py | ||
@@ -1633,14 +1633,11 @@ class TestDylib(BaseTest): | ||
with self.assertRaises(RuntimeError): | ||
llvm.load_library_permanently("zzzasdkf;jasd;l") | ||
|
||
- @unittest.skipUnless(platform.system() in ["Linux", "Darwin"], | ||
- "test only works on Linux and Darwin") | ||
+ @unittest.skipUnless(platform.system() in ["Linux"], | ||
+ "test only works on Linux") | ||
def test_libm(self): | ||
system = platform.system() | ||
- if system == "Linux": | ||
- libm = find_library("m") | ||
- elif system == "Darwin": | ||
- libm = find_library("libm") | ||
+ libm = find_library("m") | ||
llvm.load_library_permanently(libm) | ||
|
||
|
||
-- | ||
2.37.1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This patch is also in PR ( numba/llvmlite#870 ) for reference.