diff options
| author | William Bruneau <william.bruneau@epfedu.fr> | 2022-02-22 14:54:54 +0100 |
|---|---|---|
| committer | William Bruneau <william.bruneau@epfedu.fr> | 2022-02-23 08:44:51 +0100 |
| commit | 321d298a5265e94fde00c3c8068dc87612ac1e5a (patch) | |
| tree | 8ba3b4493e038f12ecae6e4dade2f2feab37f807 /test/jitter/test_post_instr.py | |
| parent | 53f1cbece50351d59ad22b09b4606138f980f0ba (diff) | |
| download | miasm-321d298a5265e94fde00c3c8068dc87612ac1e5a.tar.gz miasm-321d298a5265e94fde00c3c8068dc87612ac1e5a.zip | |
Add memory breakpoints in debugger and examples
Diffstat (limited to 'test/jitter/test_post_instr.py')
| -rw-r--r-- | test/jitter/test_post_instr.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/jitter/test_post_instr.py b/test/jitter/test_post_instr.py index 5a690e6b..896ce597 100644 --- a/test/jitter/test_post_instr.py +++ b/test/jitter/test_post_instr.py @@ -36,9 +36,7 @@ jitter.set_trace_log() def do_not_raise_me(jitter): raise ValueError("Should not be here") -jitter.exceptions_handler.callbacks[EXCEPT_BREAKPOINT_MEMORY] = [] -jitter.add_exception_handler(EXCEPT_BREAKPOINT_MEMORY, - do_not_raise_me) +jitter.add_exception_handler(EXCEPT_BREAKPOINT_MEMORY, do_not_raise_me) jitter.vm.add_memory_breakpoint(0x11000-4, 4, PAGE_READ | PAGE_WRITE) # The memory write pending will raise automod exception |