1@echo off
2
3DEL test.log > NUL
4
5ECHO INFO: Starting test...
6
7%AZRTOS_ARM_DS_DIR%\bin\armdbg.exe --cdb-entry "Arm FVP::MPS2_Cortex_M0::Bare Metal Debug::Bare Metal Debug::Cortex-M0" --image sample_threadx/Debug/sample_threadx.axf --script %AZRTOS_TEST_DIR%\azrtos_test_tx_ac6_cortex_m0.ds
8IF %ERRORLEVEL% NEQ 0 (
9    ECHO ERROR: test execution failed.
10    EXIT /B 1
11)
12
13COMP /A /L /M test.log %AZRTOS_TEST_DIR%\azrtos_test_tx_ac6_cortex_m0.log.expected
14IF %ERRORLEVEL% NEQ 0 (
15    ECHO ERROR: unexpected test results.
16    EXIT /B 1
17)
18
19ECHO INFO: Test completed without errors.
20