diff options
| author | Camille Mougey <commial@gmail.com> | 2018-07-05 16:14:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-05 16:14:23 +0200 |
| commit | f5fd096d35a9b3811097c40f553c90d3036cc035 (patch) | |
| tree | 8bce7b5aaf34fac81611243688c5a6040536ec81 /test/ir/symbexec.py | |
| parent | c0afde4d7c8ff51eaa31e4a074b9e06f080b3169 (diff) | |
| parent | 1d8dc96d6cd82d40e81e8436ed2827916179cd2e (diff) | |
| download | miasm-f5fd096d35a9b3811097c40f553c90d3036cc035.tar.gz miasm-f5fd096d35a9b3811097c40f553c90d3036cc035.zip | |
Merge pull request #788 from serpilliere/ir_remove_default_regs_init
Ir remove default regs init
Diffstat (limited to 'test/ir/symbexec.py')
| -rwxr-xr-x | test/ir/symbexec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ir/symbexec.py b/test/ir/symbexec.py index 7d5bf44a..d57bcba0 100755 --- a/test/ir/symbexec.py +++ b/test/ir/symbexec.py @@ -222,7 +222,7 @@ class TestSymbExec(unittest.TestCase): assert found - sb_empty = SymbolicExecutionEngine(ir_x86_32(), {}) + sb_empty = SymbolicExecutionEngine(ir_x86_32()) sb_empty.dump() @@ -231,7 +231,7 @@ class TestSymbExec(unittest.TestCase): arch_addr8 = ir_x86_32() # Hack to obtain tiny address space arch_addr8.addrsize = 5 - sb_addr8 = SymbolicExecutionEngine(arch_addr8, {}) + sb_addr8 = SymbolicExecutionEngine(arch_addr8) sb_addr8.dump() # Fulfill memory sb_addr8.apply_change(ExprMem(ExprInt(0, 5), 256), ExprInt(0, 256)) |