Revision 3b0ca85f2500dda99887df23cdc076bb550e2dcc authored by Matthias J. Kannwischer on 05 March 2020, 09:40:15 UTC, committed by Matthias J. Kannwischer on 05 March 2020, 09:41:47 UTC
See https://github.com/mupq/mupq/pull/43
1 parent 0972616
Raw File
testvectors.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys
if __name__ == "__main__":
    with M4() as m4:
        test = mupq.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top