()
| 172 | |
| 173 | |
| 174 | def test_gt_128(): |
| 175 | with exc_iter(INT128_VALUES, INT128_VALUES) as it: |
| 176 | for a, b in it: |
| 177 | c = a > b |
| 178 | d = mt.extint_gt_128(a, b) |
| 179 | if c != d: |
| 180 | assert_equal(d, c) |
| 181 | |
| 182 | |
| 183 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected