(self)
| 99 | @pytest.mark.skipif(sys.platform == 'gnu0', |
| 100 | reason="Known to fail on hurd") |
| 101 | def test_flush(self): |
| 102 | fp = memmap(self.tmpfp, dtype=self.dtype, mode='w+', |
| 103 | shape=self.shape) |
| 104 | fp[:] = self.data[:] |
| 105 | assert_equal(fp[0], self.data[0]) |
| 106 | fp.flush() |
| 107 | |
| 108 | def test_del(self): |
| 109 | # Make sure a view does not delete the underlying mmap |
nothing calls this directly
no test coverage detected