summaryrefslogtreecommitdiff
path: root/cts/timer
diff options
context:
space:
mode:
Diffstat (limited to 'cts/timer')
-rw-r--r--cts/timer/cts.testlist2
-rw-r--r--cts/timer/dut.c3
-rw-r--r--cts/timer/th.c3
3 files changed, 5 insertions, 3 deletions
diff --git a/cts/timer/cts.testlist b/cts/timer/cts.testlist
index d4cb3c30b3..9b5da0d6c9 100644
--- a/cts/timer/cts.testlist
+++ b/cts/timer/cts.testlist
@@ -16,4 +16,4 @@
* - GPIO_OUTPUT connection for sending notification from DUT
* - Calibrated TH timer
*/
-CTS_TEST(timer_calibration_test)
+CTS_TEST(timer_calibration_test,,,,)
diff --git a/cts/timer/dut.c b/cts/timer/dut.c
index 29003f36af..4089964791 100644
--- a/cts/timer/dut.c
+++ b/cts/timer/dut.c
@@ -29,8 +29,9 @@ void cts_task(void)
for (i = 0; i < CTS_TEST_ID_COUNT; i++) {
sync();
+ CPRINTF("\n%s start\n", tests[i].name);
rc = tests[i].run();
- CPRINTF("\n%s %d\n", tests[i].name, rc);
+ CPRINTF("\n%s end %d\n", tests[i].name, rc);
cflush();
}
diff --git a/cts/timer/th.c b/cts/timer/th.c
index a6e9d575b1..4c9912fdda 100644
--- a/cts/timer/th.c
+++ b/cts/timer/th.c
@@ -62,8 +62,9 @@ void cts_task(void)
for (i = 0; i < CTS_TEST_ID_COUNT; i++) {
sync();
+ CPRINTF("\n%s start\n", tests[i].name);
rc = tests[i].run();
- CPRINTF("\n%s %d\n", tests[i].name, rc);
+ CPRINTF("\n%s end %d\n", tests[i].name, rc);
cflush();
}