Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
gh-116622: Test updates for Android#117299
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
6c625e6c8914cf384f7e1236e9d069ac1f6File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -129,9 +129,9 @@ def test_fcntl_bad_file_overflow(self): | ||
| fcntl.fcntl(BadFile(INT_MIN - 1), fcntl.F_SETFL, os.O_NONBLOCK) | ||
| @unittest.skipIf( | ||
| platform.machine().startswith(("arm", "aarch")) | ||
| and platform.system() in ("Linux", "Android"), | ||
| "ARM Linux returns EINVAL for F_NOTIFY DN_MULTISHOT") | ||
| (platform.machine().startswith("arm") and platform.system() == "Linux") | ||
| or platform.system() == "Android", | ||
| "this platform returns EINVAL for F_NOTIFY DN_MULTISHOT") | ||
| def test_fcntl_64_bit(self): | ||
erlend-aasland marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| # Issue #1309352: fcntl shouldn't fail when the third arg fits in a | ||
| # C 'long' but not in a C 'int'. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2691,12 +2691,12 @@ def test_fma_infinities(self): | ||
| self.assertEqual(math.fma(-b, -math.inf, c), math.inf) | ||
| self.assertEqual(math.fma(-b, math.inf, c), -math.inf) | ||
| # gh-73468: On WASI and FreeBSD, libc fma() doesn't implement IEE 754-2008 | ||
| # gh-73468: On some platforms, libc fma() doesn't implement IEE 754-2008 | ||
| # properly: it doesn't use the right sign when the result is zero. | ||
| @unittest.skipIf(support.is_wasi, | ||
| "WASI fma() doesn't implement IEE 754-2008 properly") | ||
| @unittest.skipIf(sys.platform.startswith('freebsd'), | ||
| "FreeBSD fma() doesn't implement IEE 754-2008 properly") | ||
| @unittest.skipIf( | ||
| sys.platform.startswith(("freebsd", "wasi")) | ||
| or (sys.platform == "android" and platform.machine() == "x86_64"), | ||
| f"this platform doesn't implement IEE 754-2008 properly") | ||
| def test_fma_zero_result(self): | ||
Comment on lines +2696 to 2700 MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. See discussion at #116667 (comment). | ||
| nonnegative_finites = [0.0, 1e-300, 2.3, 1e300] | ||
Uh oh!
There was an error while loading. Please reload this page.