Moved legacy tests into tests

This commit is contained in:
xross
2022-07-05 12:05:31 +01:00
parent 5441081927
commit 438c24d436
18 changed files with 0 additions and 0 deletions

23
tests/runtests.py Executable file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/env python2.7
# Copyright 2018-2021 XMOS LIMITED.
# This Software is subject to the terms of the XMOS Public Licence: Version 1.
import xmostest
import os.path
if __name__ == "__main__":
xmostest.init()
xmostest.register_group("lib_xua",
"i2s_loopback_sim_tests",
"I2S loopback simulator tests",
"""
Tests are performed by running the audiohub code connected to a
loopback plugin
""")
xmostest.runtests()
xmostest.finish()