diff options
Diffstat (limited to 'test/arch/x86/unit/mn_pextr.py')
| -rw-r--r-- | test/arch/x86/unit/mn_pextr.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/arch/x86/unit/mn_pextr.py b/test/arch/x86/unit/mn_pextr.py index 0469eed7..696f077b 100644 --- a/test/arch/x86/unit/mn_pextr.py +++ b/test/arch/x86/unit/mn_pextr.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_PEXTRB(Asm_Test_32): TXT = ''' main: @@ -22,4 +23,4 @@ class Test_PEXTRB(Asm_Test_32): if __name__ == "__main__": - [test()() for test in [Test_PEXTRB]] + [test(*sys.argv[1:])() for test in [Test_PEXTRB]] |