8000 BUG: Fixes for building on Cygwin. by DWesl · Pull Request #16246 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: Fixes for building on Cygwin. #16246

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

Closed
wants to merge 32 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
46409ed
BLD: Move the configuration defines in Python.h earlier.
DWesl May 14, 2020
058cfa1
DEV: Try to rebase f2py-created modules for fewer fork() failures in …
DWesl May 14, 2020
5c9f8a0
TST: Mark the tests that seem to fail due to different floating-point…
DWesl May 14, 2020
973b14b
TST: Try to mark the tests still suseptible to fork() failures on cyg…
DWesl May 14, 2020
acea157
DEV: Revert executable renames for F77/G77 compiler.
DWesl May 18, 2020
34184fd
BLD: Add functions that fail tests on Cygwin to npy_config.h.
DWesl May 18, 2020
9c07574
TST: Describe what I know about the FPE test failure.
DWesl May 18, 2020
df5b0c6
STY: A few largely cosmetic changes.
DWesl May 18, 2020
8b11932
DEV: Stop trying to rebase f2py modules.
DWesl May 18, 2020
fc56c79
Remove xfails from tests that now pass.
DWesl May 19, 2020
10dae6e
Use parametrize for the dtypes in the abs tests.
DWesl May 19, 2020
debf846
Remove xfail mark from an assert function.
DWesl May 20, 2020
b530f99
Remove references to np.complex256
DWesl May 25, 2020
c11ee6f
Remove reference to np.complex256 in the other test
DWesl May 25, 2020
1a2292f
Don't add `gfortran` to the list of GNU77 compilers
DWesl May 29, 2020
20df822
Include only 'gfortran' in gnu fcompiler, not absolute version
DWesl Jun 6, 2020
52b9ed5
Merge branch 'master' into cygwin-fixes
DWesl Jul 9, 2020
6a16452
TST: Use usual names for the dtypes in xfail mark
DWesl Jul 9, 2020
92eaff3
BLD: Remind GCC that .seh_savexmm fails for xmm16-31.
DWesl Jun 17, 2020
d9c21bb
BLD: Fix code checking for old GCC on cygwin.
DWesl Jun 19, 2020
eca1e27
TST: Only mark fork()-using tests xfail on 32-bit cygwin.
DWesl Jun 19, 2020
6ffbcb2
BLD: Fix flags added to compiler line for old GCC on MS.
DWesl Jun 19, 2020
5adbca1
TST: parametrize test_npymath_complex.
DWesl Jul 9, 2020
51fbbb8
TST: Clarify the xfail messages for branch cuts.
DWesl Aug 29, 2020
f47f315
BLD: Remove probably-unnecessary include.
DWesl Aug 29, 2020
5cb8a0f
TST: Try to keep testing code from changing tempfile name.
DWesl Aug 23, 2020
ced41b5
BLD: Mark modfl as problematic on cygwin.
DWesl Aug 29, 2020
d706499
Undef HAVE_MODFL only on 64-bit cygwin
DWesl Sep 1, 2020
160fd73
Revert "BLD: Fix flags added to compiler line for old GCC on MS."
DWesl Oct 27, 2020
cc9e8df
Revert "BLD: Fix code checking for old GCC on cygwin."
DWesl Oct 27, 2020
e18c4b6
Revert "BLD: Remind GCC that .seh_savexmm fails for xmm16-31."
DWesl Oct 27, 2020
4abffbd
Merge branch 'master' into cygwin-fixes
charris Dec 31, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TST: Describe what I know about the FPE test failure.
The generic "this doesn't work" was confusing people.  Specifying what
"this" is and what happed works better.
  • Loading branch information
DWesl committed May 18, 2020
commit 9c07574eded468fc950c20e9cdba64ea599bb940
9 changes: 6 additions & 3 deletions numpy/core/tests/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,9 +610,12 @@ def assert_op_raises_fpe(self, fpeerr, flop, sc1, sc2):
self.assert_raises_fpe(fpeerr, flop, sc1, sc2[()])
self.assert_raises_fpe(fpeerr, flop, sc1[()], sc2[()])

@pytest.mark.xfail(sys.platform == 'cygwin',
reason='FPE support incomplete',
strict=True)
@pytest.mark.xfail(
sys.platform == "cygwin",
reason="complex256(2 ** (2 ** nexp_256)) is inf+infj without OverflowError",
raises=AssertionError,
strict=True,
)
def test_floating_exceptions(self):
# Test basic arithmetic function errors
with np.errstate(all='raise'):
Expand Down
0