diff options
Diffstat (limited to 'test/arch/x86/unit/mn_psrl_psll.py')
| -rw-r--r-- | test/arch/x86/unit/mn_psrl_psll.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/arch/x86/unit/mn_psrl_psll.py b/test/arch/x86/unit/mn_psrl_psll.py index 79125612..44126b96 100644 --- a/test/arch/x86/unit/mn_psrl_psll.py +++ b/test/arch/x86/unit/mn_psrl_psll.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_PSRL(Asm_Test_32): TXT = ''' main: @@ -52,4 +53,4 @@ class Test_PSLL(Asm_Test_32): if __name__ == "__main__": - [test()() for test in [Test_PSRL, Test_PSLL]] + [test(*sys.argv[1:])() for test in [Test_PSRL, Test_PSLL]] |