diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/os_dep/win_api_x86_32.py (renamed from test/jitter/os_dep/win_api_x86_32.py) | 2 | ||||
| -rw-r--r-- | test/test_all.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/jitter/os_dep/win_api_x86_32.py b/test/os_dep/win_api_x86_32.py index d434f88f..62fe2636 100644 --- a/test/jitter/os_dep/win_api_x86_32.py +++ b/test/os_dep/win_api_x86_32.py @@ -4,7 +4,7 @@ import unittest import logging from miasm2.analysis.machine import Machine -import miasm2.jitter.os_dep.win_api_x86_32 as winapi +import miasm2.os_dep.win_api_x86_32 as winapi machine = Machine("x86_32") diff --git a/test/test_all.py b/test/test_all.py index 11ea1c3a..9f014e32 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -47,15 +47,15 @@ all_tests = { ["ir/ir2C.py"], ["ir/symbexec.py"], ], - "jitter": [ - ["jitter/os_dep/win_api_x86_32.py"], + "os_dep": [ + ["os_dep/win_api_x86_32.py"], ], "order": [ "architecture", "core", "expression", "ir", - "jitter", + "os_dep", ], }, "example": { |