diff options
| author | Camille Mougey <commial@gmail.com> | 2018-06-21 14:21:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-21 14:21:15 +0200 |
| commit | e84d9554ec69a71e1300901eeac940424b9744a8 (patch) | |
| tree | e43438e959a5a38d45787753863abb34c5d82ba7 /test/analysis/dse.py | |
| parent | bd80c0876aeecdc027c0c0b0725f0f890d41fa62 (diff) | |
| parent | c6462990df3773ed4bdf82f7dc3b30f1c6331a81 (diff) | |
| download | miasm-e84d9554ec69a71e1300901eeac940424b9744a8.tar.gz miasm-e84d9554ec69a71e1300901eeac940424b9744a8.zip | |
Merge pull request #772 from serpilliere/add_jit_trace_api
Jitter: add simple trace api
Diffstat (limited to 'test/analysis/dse.py')
| -rw-r--r-- | test/analysis/dse.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/analysis/dse.py b/test/analysis/dse.py index 5a72db34..4367f6f7 100644 --- a/test/analysis/dse.py +++ b/test/analysis/dse.py @@ -34,8 +34,7 @@ class DSETest(object): self.myjit = jitter(jitter_engine) self.myjit.init_stack() - self.myjit.jit.log_regs = True - self.myjit.jit.log_mn = True + self.myjit.set_trace_log() self.dse = None self.assembly = None |