diff options
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index 2d078bf1..85ebb31f 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -739,6 +739,7 @@ class ExampleSymbolExec(Example): testset += ExampleSymbolExec(["single_instr.py"]) +testset += ExampleSymbolExec(["symbol_exec.py", "--steps", Example.get_sample("box_upx.exe")]) for options, nb_sol, tag in [([], 8, []), (["-i", "--rename-args"], 12, [TAGS["z3"]])]: testset += ExampleSymbolExec(["depgraph.py", @@ -799,6 +800,12 @@ for jitter in ExampleJitter.jitter_engines: products=[Example.get_sample("box_upx_exe_unupx.bin")], tags=tags.get(jitter, [])) + testset += ExampleJitter(["unpack_generic.py", + Example.get_sample("box_upx.exe")] + + ["--jitter", jitter, "-o"], + products=[Example.get_sample("box_upx.exe.dump")], + tags=tags.get(jitter, [])) + testset += ExampleJitter(["memory_breakpoint.py", Example.get_sample("box_upx.exe")] + ["--jitter", jitter] + |