about summary refs log tree commit diff stats
path: root/test/test_all.py
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2016-01-25 13:03:47 +0100
committerAjax <commial@gmail.com>2016-01-25 13:07:45 +0100
commit195ae36b8fae391fbe9fcd3058a699f3f439983c (patch)
tree182b5e1cf950ae929ea7080bf1090adc9bfc4380 /test/test_all.py
parentaeeb1918b47ef9fc0be0b57bc916aa7f39f22387 (diff)
downloadmiasm-195ae36b8fae391fbe9fcd3058a699f3f439983c.tar.gz
miasm-195ae36b8fae391fbe9fcd3058a699f3f439983c.zip
Move types -> test_types to avoid namespace collision (creds @fmonjalet)
Diffstat (limited to 'test/test_all.py')
-rw-r--r--test/test_all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_all.py b/test/test_all.py
index 6a619948..6b94ad1f 100644
--- a/test/test_all.py
+++ b/test/test_all.py
@@ -191,7 +191,7 @@ for script in ["interval.py",
                "parse_asm.py",
                "utils.py",
                "sembuilder.py",
-               "types.py",
+               "test_types.py",
                ]:
     testset += RegressionTest([script], base_dir="core")
 ## Expression
@@ -483,7 +483,7 @@ for script, dep in [(["x86_32.py", Example.get_sample("x86_32_sc.bin")], []),
         testset += ExampleJitter(script + ["--jitter", jitter], depends=dep,
                                  tags=tags)
 
-testset += ExampleJitter(["types.py"])
+testset += ExampleJitter(["example_types.py"])
 
 
 if __name__ == "__main__":