summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/ttest01/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests/ttest01/init.c')
-rw-r--r--testsuites/libtests/ttest01/init.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/testsuites/libtests/ttest01/init.c b/testsuites/libtests/ttest01/init.c
index c0ccee9aa4..f5405208a0 100644
--- a/testsuites/libtests/ttest01/init.c
+++ b/testsuites/libtests/ttest01/init.c
@@ -28,6 +28,7 @@
#include <rtems/test.h>
#include <sys/time.h>
+#include <stdlib.h>
#include <string.h>
#include <rtems.h>
@@ -255,6 +256,8 @@ static const T_config config = {
.putchar_arg = &test_instance,
.verbosity = T_VERBOSE,
.now = now,
+ .allocate = malloc,
+ .deallocate = free,
.action_count = T_ARRAY_SIZE(actions),
.actions = actions
};