()
| 67 | |
| 68 | |
| 69 | def test_overlapping_assignments(): |
| 70 | # Test automatically generated assignments which overlap in memory. |
| 71 | |
| 72 | inds = _indices(ndims) |
| 73 | |
| 74 | for ind in inds: |
| 75 | srcidx = tuple([a[0] for a in ind]) |
| 76 | dstidx = tuple([a[1] for a in ind]) |
| 77 | |
| 78 | _check_assignment(srcidx, dstidx) |
| 79 | |
| 80 | |
| 81 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected