aboutsummaryrefslogtreecommitdiffstats
path: root/test/testheap.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testheap.c')
-rw-r--r--test/testheap.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/testheap.c b/test/testheap.c
index eb81f77ed..698a01861 100644
--- a/test/testheap.c
+++ b/test/testheap.c
@@ -64,11 +64,6 @@ static MemoryHeap test_heap;
* sequence.
*/
-static char *heap1_gettest(void) {
-
- return "Heap, allocation and fragmentation test";
-}
-
static void heap1_setup(void) {
chHeapInit(&test_heap, test.buffer, sizeof(union test_buffers));
@@ -148,7 +143,7 @@ static void heap1_execute(void) {
}
const struct testcase testheap1 = {
- heap1_gettest,
+ "Heap, allocation and fragmentation test",
heap1_setup,
NULL,
heap1_execute