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>2020-12-24 20:29:39 +0100
committerGitHub <noreply@github.com>2020-12-24 20:29:39 +0100
commit53735e8cd23aa4bc1eed641264de3b9d18692103 (patch)
treed00eca211174dcef32971e271f307721a1217a40 /test/test_all.py
parent40d150d0089494d07dd5e10bc7625df41fbf3f68 (diff)
parent73e54732e50b405762c64e0faa032e5ae0fcd1ed (diff)
downloadmiasm-53735e8cd23aa4bc1eed641264de3b9d18692103.tar.gz
miasm-53735e8cd23aa4bc1eed641264de3b9d18692103.zip
Merge pull request #1326 from serpilliere/rename_lifter
Rename lifter
Diffstat (limited to 'test/test_all.py')
-rwxr-xr-xtest/test_all.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_all.py b/test/test_all.py
index c2391572..f0ac755e 100755
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -600,10 +600,10 @@ for script, prods, depends in [
         (["dis_x86_string.py"], ["str_cfg.dot"], []),
         (["dis_binary.py", Example.get_sample("test_x86_32_dis.bin"),
         ], ["bin_cfg.dot"], [test_x86_32_dis]),
-        (["dis_binary_ir.py", Example.get_sample("test_x86_32_dis.bin"),
+        (["dis_binary_lift.py", Example.get_sample("test_x86_32_dis.bin"),
         ], ["bin_ir_cfg.dot"], [test_x86_32_dis]),
-        (["dis_binary_ira.py", Example.get_sample("test_x86_32_dis.bin"),
-        ], ["bin_ira_cfg.dot"], [test_x86_32_dis]),
+        (["dis_binary_lift_model_call.py", Example.get_sample("test_x86_32_dis.bin"),
+        ], ["bin_lifter_model_call_cfg.dot"], [test_x86_32_dis]),
         (["full.py", Example.get_sample("box_upx.exe")],
          ["graph_execflow.dot", "lines.dot"], []),
 ]: