diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-05 11:04:46 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-07-05 13:16:45 +0200 |
| commit | 1d8dc96d6cd82d40e81e8436ed2827916179cd2e (patch) | |
| tree | 8bce7b5aaf34fac81611243688c5a6040536ec81 /test/ir/symbexec.py | |
| parent | 143196e691a124df3c011167e73a77c1fd503453 (diff) | |
| download | miasm-1d8dc96d6cd82d40e81e8436ed2827916179cd2e.tar.gz miasm-1d8dc96d6cd82d40e81e8436ed2827916179cd2e.zip | |
IR: remove default regs_init for symbexec
Diffstat (limited to '')
| -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)) |