(self)
| 461 | "intent(inout) should have failed on improper array") |
| 462 | |
| 463 | def test_c_inout_23seq(self): |
| 464 | obj = np.array(self.num23seq, dtype=self.type.dtype) |
| 465 | shape = (len(self.num23seq), len(self.num23seq[0])) |
| 466 | a = self.array(shape, intent.in_.c.inout, obj) |
| 467 | assert a.has_shared_memory() |
| 468 | |
| 469 | def test_in_copy_from_2casttype(self): |
| 470 | for t in self.type.cast_types(): |
nothing calls this directly
no test coverage detected