diff options
| author | Camille Mougey <commial@gmail.com> | 2015-12-04 16:49:11 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-12-04 16:49:11 +0100 |
| commit | d623ebfc823c3c02b487507adddc4519dad23513 (patch) | |
| tree | 6c2b674c1a14e9e8ef4afdfdd8088e5b671022a9 /test/ir/ir2C.py | |
| parent | 7c74ea27685aabb51bf158b5ca13ce8fec147ef0 (diff) | |
| parent | 7b2486b89b5f0f9fe72ab043d4d788b4bc7a9d36 (diff) | |
| download | miasm-d623ebfc823c3c02b487507adddc4519dad23513.tar.gz miasm-d623ebfc823c3c02b487507adddc4519dad23513.zip | |
Merge pull request #287 from serpilliere/jit_bin_search_clean
Jit bin search clean
Diffstat (limited to 'test/ir/ir2C.py')
| -rw-r--r-- | test/ir/ir2C.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/ir/ir2C.py b/test/ir/ir2C.py index 8a5f97c4..36683904 100644 --- a/test/ir/ir2C.py +++ b/test/ir/ir2C.py @@ -54,10 +54,6 @@ class TestIrIr2C(unittest.TestCase): self.assertRaises(NotImplementedError, translator.from_expr, ExprOp('X', *args[:2])) - # Ternary operators - self.translationTest( - ExprOp('div8', *args[:3]), r'(div_op(32, 0x0, 0x1, 0x2) &0xffffffff)') - # Other cases self.translationTest( ExprOp('+', *args[:3]), r'(((0x0&0xffffffff)+(0x1&0xffffffff)+(0x2&0xffffffff))&0xffffffff)') |