tests: added TC_START to tests

TC_START was missing from some tests. For this reason automated testing
parsing wasn't unified for all tests. This patch fixes the issue and adds
TC_START to tests where it was missing.

Change-Id: I7e27a3fd8eaef9c3d0b0e0aeba9bca5b97eb0c58
Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
This commit is contained in:
Milosz Wasilewski 2017-04-12 10:21:51 +01:00 committed by Kumar Gala
commit deea71b3c6
5 changed files with 5 additions and 0 deletions

View file

@ -45,6 +45,7 @@ void main(void)
{
int ret, ret_code;
TC_START("bluetooth");
driver_init();
ret = bt_enable(NULL);

View file

@ -29,6 +29,7 @@ void main(void)
{
uint32_t i = 0;
TC_START("nmi_test_isr");
/* Configure the NMI isr */
_NmiHandlerSet(nmi_test_isr);

View file

@ -48,6 +48,7 @@ void main(void)
{
int rv = TC_PASS;
TC_START("kernel_errno");
k_fifo_init(&fifo);
errno = errno_values[N_THREADS];

View file

@ -15,6 +15,7 @@ void main(void)
volatile long long c = a / b;
int rv = TC_PASS;
TC_START("test_multilib");
if (c != 33) {
rv = TC_FAIL;
}

View file

@ -31,6 +31,7 @@ void main(void)
int tcRC = TC_PASS;
int i;
TC_START("kernel_xip");
PRINT_DATA("Starting XIP tests\n");
PRINT_LINE;