Revision d99fe3285ba342f400c5bbe8a50fd50d4ecfe524 authored by Ko- on 15 May 2019, 08:13:23 UTC, committed by Ko- on 15 May 2019, 09:40:09 UTC
1 parent 99b58d9
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