diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2021-05-06 23:23:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-06 23:23:06 +0200 |
| commit | 6285271a95f3ec9815728fb808a69bb21b50f770 (patch) | |
| tree | 486f3b67c279b452085943864dea336c760106aa /test/jitter/jitload.py | |
| parent | acfb6e552b287cc91d2060456be4ea7071b9ba8e (diff) | |
| parent | e0abd462cefd168ae82426533c1a822254aca374 (diff) | |
| download | miasm-6285271a95f3ec9815728fb808a69bb21b50f770.tar.gz miasm-6285271a95f3ec9815728fb808a69bb21b50f770.zip | |
Merge pull request #1368 from Summus-git/replace_run_bool
Replace jitter.run boolean by jitter.running
Diffstat (limited to 'test/jitter/jitload.py')
| -rw-r--r-- | test/jitter/jitload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/jitter/jitload.py b/test/jitter/jitload.py index 7a72d1d5..d93414b9 100644 --- a/test/jitter/jitload.py +++ b/test/jitter/jitload.py @@ -21,7 +21,7 @@ myjit.vm.add_memory_page(run_addr, PAGE_READ | PAGE_WRITE, data) # Sentinelle called on terminate def code_sentinelle(jitter): - jitter.run = False + jitter.running = False jitter.pc = 0 return True @@ -33,7 +33,7 @@ myjit.init_run(run_addr) myjit.continue_run() # Check end -assert myjit.run is False +assert myjit.running is False # Check resulting state / accessors assert myjit.cpu.EAX == 0 |