(self)
| 20 | "Skipping test: no ntypes.float96 available on this platform." |
| 21 | |
| 22 | def test_underlow(self): |
| 23 | # Regression test for #759: |
| 24 | # instantiating MachAr for dtype = np.float96 raises spurious warning. |
| 25 | with errstate(all='raise'): |
| 26 | try: |
| 27 | self._run_machar_highprec() |
| 28 | except FloatingPointError as e: |
| 29 | msg = "Caught %s exception, should not have been raised." % e |
| 30 | raise AssertionError(msg) |
nothing calls this directly
no test coverage detected