diff options
| author | Ajax <commial@gmail.com> | 2018-08-29 16:50:38 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-08-30 08:10:45 +0200 |
| commit | 259115571a191386db7da1a6ebd4d02baaac2bc9 (patch) | |
| tree | 42b571914844de1c3625cc2136a2fa63b9f42088 /test/test_all.py | |
| parent | a5d6b89ec71b088011888636f87a5cea07c55af7 (diff) | |
| download | miasm-259115571a191386db7da1a6ebd4d02baaac2bc9.tar.gz miasm-259115571a191386db7da1a6ebd4d02baaac2bc9.zip | |
Use the dse_crackme compiled version
Diffstat (limited to 'test/test_all.py')
| -rwxr-xr-x | test/test_all.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/test_all.py b/test/test_all.py index a3661081..efd69706 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -645,16 +645,10 @@ for options, nb_sol, tag in [([], 4, []), depends=[test_x86_32_if_reg], tags=tag) -dse_crackme_out = Example.get_sample("dse_crackme.c")[:-2] -dse_crackme = ExampleSymbolExec([Example.get_sample("dse_crackme.c"), - "-o", dse_crackme_out], - products=[dse_crackme_out], - executable="cc") -testset += dse_crackme +dse_crackme_out = Example.get_sample("dse_crackme") for strategy in ["code-cov", "branch-cov", "path-cov"]: testset += ExampleSymbolExec(["dse_crackme.py", dse_crackme_out, "--strategy", strategy], - depends=[dse_crackme], tags=[TAGS["z3"]]) testset += ExampleSymbolExec(["dse_strategies.py", Example.get_sample("simple_test.bin"), |