This commit is contained in:
Steven Dan
2026-05-12 11:17:20 +08:00
parent b5b095efd0
commit b43581c2ff
473 changed files with 55278 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
#!/usr/bin/env python
import xmostest
if __name__ == "__main__":
xmostest.init()
xmostest.register_group("lib_uart",
"sim_regression",
"Uart Simulator Regression",
"""
Several tests are performed in simulation with a loopback between the UART Tx
and Rx ports. This tests the features of the individual components,
verifying them against each other. The various options and use cases of the
components are tested.
""")
xmostest.register_group("lib_uart", "sim_regression", "Uart Transmission Test",
"""
""")
xmostest.runtests()
xmostest.finish()