()
| 200 | |
| 201 | |
| 202 | def test_floordiv_128_64(): |
| 203 | with exc_iter(INT128_VALUES, INT64_POS_VALUES) as it: |
| 204 | for a, b in it: |
| 205 | c = a // b |
| 206 | d = mt.extint_floordiv_128_64(a, b) |
| 207 | |
| 208 | if c != d: |
| 209 | assert_equal(d, c) |
| 210 | |
| 211 | |
| 212 | def test_ceildiv_128_64(): |
nothing calls this directly
no test coverage detected