diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Kconfig | 1 | ||||
-rw-r--r-- | test/test_mutex.c | 3 |
2 files changed, 1 insertions, 3 deletions
diff --git a/test/Kconfig b/test/Kconfig index 7a71f4fb..8f3ae8ba 100644 --- a/test/Kconfig +++ b/test/Kconfig @@ -14,6 +14,7 @@ config TEST_MODULE_LLSYNC_DEFER config TEST_MODULE_MUTEX bool "mutex" + select MUTEX_DEBUG config TEST_MODULE_MUTEX_PI bool "mutex_pi" diff --git a/test/test_mutex.c b/test/test_mutex.c index d5cc5d13..029e2fee 100644 --- a/test/test_mutex.c +++ b/test/test_mutex.c @@ -178,7 +178,4 @@ test_setup(void) timer_init(&test_timer, test_report_syscnt, TIMER_DETACHED); time = clock_get_time() + clock_ticks_from_ms(TEST_REPORT_INTERVAL); timer_schedule(&test_timer, time); - - log_info("test: enable mutex debugging for the selected implementation"); - log_info("test: and check the relevant system counters"); } |