diff options
| author | Camille Mougey <commial@gmail.com> | 2016-03-22 16:05:33 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2016-03-22 16:05:33 +0100 |
| commit | a004a1ee4f7c112d525e876447fbc1b6b3ddbd82 (patch) | |
| tree | 1ea7d5dc86fe01baaac265930ee381a81a965e95 /test/test_all.py | |
| parent | 4f3f933654de1ccbf88cdcfe494b03f1ae394a17 (diff) | |
| parent | ae22a569d4da74d58bbd26bb254086b486a7a69a (diff) | |
| download | miasm-a004a1ee4f7c112d525e876447fbc1b6b3ddbd82.tar.gz miasm-a004a1ee4f7c112d525e876447fbc1b6b3ddbd82.zip | |
Merge pull request #341 from serpilliere/dg_track_reg_lower_case
Example/Depgraph: allow lower/upper register tracking
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py index 704e834f..195be412 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -511,7 +511,7 @@ for options, nb_sol, tag in [([], 8, []), testset += ExampleSymbolExec(["depgraph.py", Example.get_sample("simple_test.bin"), "-m", "x86_32", "0x0", "0x8b", - "eax"] + options, + "EAX"] + options, products=["sol_%d.dot" % nb for nb in xrange(nb_sol)], tags=tag) @@ -521,7 +521,7 @@ for options, nb_sol, tag in [([], 4, []), testset += ExampleSymbolExec(["depgraph.py", Example.get_sample("x86_32_if_reg.bin"), "-m", "x86_32", "0x0", "0x19", - "eax"] + options, + "EAX"] + options, products=["sol_%d.dot" % nb for nb in xrange(nb_sol)], depends=[test_x86_32_if_reg], |