about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2022-02-28 17:52:53 +0100
committerGitHub <noreply@github.com>2022-02-28 17:52:53 +0100
commitb9ecc43cf5ae1583cb9a1e053bac5be2e6c68aa0 (patch)
tree45d594309fc3a4390a5b1ad75ab7fd40fa18385f /test/test_all.py
parentfb02fe52a4ee8473d40b460022c9c39c93027e57 (diff)
parent35bb4bc0a147672c970962c187515ab67adf2212 (diff)
downloadmiasm-b9ecc43cf5ae1583cb9a1e053bac5be2e6c68aa0.tar.gz
miasm-b9ecc43cf5ae1583cb9a1e053bac5be2e6c68aa0.zip
Merge pull request #1417 from WilliamBruneau/mem_bp
Add memory breakpoints in debugger and examples
Diffstat (limited to 'test/test_all.py')
-rwxr-xr-xtest/test_all.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py
index a49f6ff9..1ec49324 100755
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -796,6 +796,11 @@ for jitter in ExampleJitter.jitter_engines:
                              products=[Example.get_sample("box_upx_exe_unupx.bin")],
                              tags=tags.get(jitter, []))
 
+    testset += ExampleJitter(["memory_breakpoint.py",
+                              Example.get_sample("box_upx.exe")] +
+                             ["--jitter", jitter] +
+                             ["-o", "0x401130", "0x100", "--access", "rw"],
+                             tags=tags.get(jitter, []))
 
 for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []),
                     (["arm.py", Example.get_sample("md5_arm"), "--mimic-env"],