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