34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
import xmostest
|
|
import os
|
|
from xmostest.xmostest_subprocess import call
|
|
from uart_tx_checker import UARTTxChecker, Parity
|
|
|
|
|
|
def do_test(baud, parity):
|
|
myenv = {'parity': parity, 'baud': baud}
|
|
path = "app_uart_test_parity"
|
|
resources = xmostest.request_resource("xsim")
|
|
|
|
checker = UARTTxChecker("tile[0]:XS1_PORT_1A", "tile[0]:XS1_PORT_1B", Parity[parity], baud, 4, 1, 8)
|
|
tester = xmostest.ComparisonTester(open('test_tx_parity_uart.expect'),
|
|
"lib_uart", "sim_regression", "tx_parity", myenv,
|
|
regexp=True)
|
|
|
|
# Only want no parity @ 115200 baud for smoke tests
|
|
if baud != 115200 or parity != 'UART_PARITY_EVEN':
|
|
tester.set_min_testlevel('nightly')
|
|
|
|
xmostest.run_on_simulator(resources['xsim'],
|
|
'app_uart_test_parity/bin/smoke/app_uart_test_parity_smoke.xe',
|
|
simthreads=[checker],
|
|
xscope_io=True,
|
|
tester=tester,
|
|
clean_before_build=True,
|
|
build_env=myenv)
|
|
|
|
|
|
def runtest():
|
|
for baud in [14400, 57600, 115200, 230400]:
|
|
for parity in ['UART_PARITY_NONE', 'UART_PARITY_EVEN', 'UART_PARITY_ODD']:
|
|
do_test(baud, parity)
|