https://github.com/mupq/pqm4
Revision 0dd7285734760c7ac074a3875b565b65bc35b562 authored by Richard Petri on 01 October 2021, 16:15:28 UTC, committed by Richard Petri on 01 October 2021, 16:15:28 UTC
1 parent 0197728
Raw File
Tip revision: 0dd7285734760c7ac074a3875b565b65bc35b562 authored by Richard Petri on 01 October 2021, 16:15:28 UTC
Update mupq
Tip revision: 0dd7285
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