summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-01-07 00:35:46 +0100
committerRichard Braun <rbraun@sceen.net>2018-01-07 00:35:46 +0100
commit2396ae7dc601c9159ce1a86274133a7f90bf3aca (patch)
treed352cb9978e4c43693972235cb4c1a9dd8c5ebe9 /test
parenta97a2bc6f1c24851ef19600a7bd15b211137abfe (diff)
kern/Kconfig: new MUTEX_DEBUG option
Diffstat (limited to 'test')
-rw-r--r--test/Kconfig1
-rw-r--r--test/test_mutex.c3
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");
}