about summary refs log tree commit diff stats
path: root/test/arch/x86/unit/mn_strings.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/arch/x86/unit/mn_strings.py')
-rw-r--r--test/arch/x86/unit/mn_strings.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/arch/x86/unit/mn_strings.py b/test/arch/x86/unit/mn_strings.py
index f8055665..5e7269f7 100644
--- a/test/arch/x86/unit/mn_strings.py
+++ b/test/arch/x86/unit/mn_strings.py
@@ -1,4 +1,6 @@
 #! /usr/bin/env python
+import sys
+
 from asm_test import Asm_Test_32
 
 class Test_SCAS(Asm_Test_32):
@@ -45,4 +47,4 @@ class Test_MOVS(Asm_Test_32):
 
 
 if __name__ == "__main__":
-    [test()() for test in [Test_SCAS, Test_MOVS]]
+    [test(*sys.argv[1:])() for test in [Test_SCAS, Test_MOVS]]