Revision 6ba5207a16625f65266cb903a9c9f1b140ef6e67 authored by Markku-Juhani O. Saarinen on 15 November 2019, 12:34:27 UTC, committed by Matthias J. Kannwischer on 15 November 2019, 12:34:27 UTC
* len and flag were flipped

* apply same fix to mupq
1 parent 670ec38
Raw File
test.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.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top