https://github.com/mupq/pqm4
Revision 012cc153510b1f9c056d2af4de665b719ea265a5 authored by Richard Petri on 08 October 2021, 07:39:46 UTC, committed by Richard Petri on 08 October 2021, 07:39:46 UTC
1 parent 8b9805e
Raw File
Tip revision: 012cc153510b1f9c056d2af4de665b719ea265a5 authored by Richard Petri on 08 October 2021, 07:39:46 UTC
Add naked attribute to pure asm functions
Tip revision: 012cc15
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import parse_arguments, get_platform

import sys

if __name__ == "__main__":
    args, rest = parse_arguments()
    platform, settings = get_platform(args)
    with platform:
        test = mupq.SimpleTest(settings, platform)
        test.test_all(rest)
back to top