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