diff options
Diffstat (limited to 'test/arch/x86/unit/mn_stack.py')
| -rw-r--r-- | test/arch/x86/unit/mn_stack.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/arch/x86/unit/mn_stack.py b/test/arch/x86/unit/mn_stack.py index 6ae26d67..3bce3979 100644 --- a/test/arch/x86/unit/mn_stack.py +++ b/test/arch/x86/unit/mn_stack.py @@ -1,4 +1,6 @@ #! /usr/bin/env python +import sys + from asm_test import Asm_Test_32 @@ -57,4 +59,4 @@ BAD: if __name__ == "__main__": - [test()() for test in [Test_PUSHPOP]] + [test(*sys.argv[1:])() for test in [Test_PUSHPOP]] |