(self)
| 953 | assert isinstance(r2._ast, UnOpNode) and r2._ast.op == UnOp.BV2INT |
| 954 | |
| 955 | def test_int2bv(self): |
| 956 | x = Int("x") |
| 957 | r = Int2BV(x, 8) |
| 958 | assert r.size() == 8 |
| 959 | |
| 960 | |
| 961 | # ------------------------------------------------------------------ |