(self)
| 2439 | shape = (3_000_000_000,) # more than 2**31-1 |
| 2440 | |
| 2441 | def setUp(self): |
| 2442 | super().setUp() |
| 2443 | # This should be fast since disk space isn't actually allocated, |
| 2444 | # so this case is OK for non-heavy test runs. |
| 2445 | self.h5file.create_carray( |
| 2446 | "/", "array", atom=tb.Int8Atom(), shape=self.shape |
| 2447 | ) |
| 2448 | |
| 2449 | def test00_shape(self): |
| 2450 | """Check that the shape doesn't overflow.""" |
nothing calls this directly
no test coverage detected