about summary refs log tree commit diff stats
path: root/test/arch/x86/unit/mn_pcmpeq.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/arch/x86/unit/mn_pcmpeq.py')
-rw-r--r--test/arch/x86/unit/mn_pcmpeq.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/arch/x86/unit/mn_pcmpeq.py b/test/arch/x86/unit/mn_pcmpeq.py
index 06815e76..5d0a59c6 100644
--- a/test/arch/x86/unit/mn_pcmpeq.py
+++ b/test/arch/x86/unit/mn_pcmpeq.py
@@ -1,7 +1,8 @@
 #! /usr/bin/env python
-from asm_test import Asm_Test_32
 import sys
 
+from asm_test import Asm_Test_32
+
 class Test_PCMPEQB(Asm_Test_32):
     TXT = '''
     main:
@@ -61,4 +62,4 @@ class Test_PCMPEQD(Asm_Test_32):
 
 
 if __name__ == "__main__":
-    [test()() for test in [Test_PCMPEQB, Test_PCMPEQW, Test_PCMPEQD]]
+    [test(*sys.argv[1:])() for test in [Test_PCMPEQB, Test_PCMPEQW, Test_PCMPEQD]]