about summary refs log tree commit diff stats
path: root/test/arch/x86/unit/mn_float.py
diff options
context:
space:
mode:
authorserpilliere <fabrice.desclaux@cea.fr>2016-04-25 22:12:45 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2016-04-26 11:05:41 +0200
commit5dc6a1d5fef50253f98838db681f92d0071172f5 (patch)
tree314f4a3ca5b94694db7d71ac6e1fe4a10e39bf40 /test/arch/x86/unit/mn_float.py
parent65cf848438651b3bfe01243778af9e6d5b0470d6 (diff)
downloadmiasm-5dc6a1d5fef50253f98838db681f92d0071172f5.tar.gz
miasm-5dc6a1d5fef50253f98838db681f92d0071172f5.zip
Test: TCC conditional tests
Diffstat (limited to 'test/arch/x86/unit/mn_float.py')
-rw-r--r--test/arch/x86/unit/mn_float.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/arch/x86/unit/mn_float.py b/test/arch/x86/unit/mn_float.py
index 81eb518b..d704de73 100644
--- a/test/arch/x86/unit/mn_float.py
+++ b/test/arch/x86/unit/mn_float.py
@@ -1,4 +1,6 @@
 #! /usr/bin/env python
+import sys
+
 from asm_test import Asm_Test_32
 
 
@@ -19,4 +21,4 @@ class Test_FADD(Asm_Test_32):
 
 
 if __name__ == "__main__":
-    [test()() for test in [Test_FADD]]
+    [test(*sys.argv[1:])() for test in [Test_FADD]]