()
| 106 | |
| 107 | |
| 108 | def test_mul_64_64(): |
| 109 | with exc_iter(INT64_VALUES, INT64_VALUES) as it: |
| 110 | for a, b in it: |
| 111 | c = a * b |
| 112 | d = mt.extint_mul_64_64(a, b) |
| 113 | if c != d: |
| 114 | assert_equal(d, c) |
| 115 | |
| 116 | |
| 117 | def test_add_128(): |
nothing calls this directly
no test coverage detected