From 54fd2c3e35b0f182157d0c2a034b54ebbd11266b Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Mon, 18 Apr 2022 00:45:07 -0700 Subject: [PATCH] [app][mem_test] print the range before starting the test --- app/tests/mem_tests.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/tests/mem_tests.c b/app/tests/mem_tests.c index ffaed50f..360966cb 100644 --- a/app/tests/mem_tests.c +++ b/app/tests/mem_tests.c @@ -93,6 +93,9 @@ static status_t do_moving_inversion_test(void *ptr, size_t len, uint32_t pat) { static void do_mem_tests(void *ptr, size_t len) { size_t i; + printf("running memory tests on address range [%p..%p]\n", + ptr, (uint8_t *)ptr + len - 1); + /* test 1: simple write address to memory, read back */ printf("test 1: simple address write, read back\n"); volatile uint32_t *vbuf32 = ptr;