BV2Int(0xFF, 8) = 255 (unsigned).
(self, kernel)
| 654 | assert _try_prove(UGT(BitVecVal(255, 8), BitVecVal(0, 8))) |
| 655 | |
| 656 | def test_bv2int_unsigned(self, kernel): |
| 657 | """BV2Int(0xFF, 8) = 255 (unsigned).""" |
| 658 | assert _try_prove(BV2Int(BitVecVal(0xFF, 8)) == IntVal(255)) |
| 659 | |
| 660 | |
| 661 | # =================================================================== |
nothing calls this directly
no test coverage detected