aboutsummaryrefslogtreecommitdiff
path: root/apps/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test.c')
-rw-r--r--apps/test.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/test.c b/apps/test.c
index 59847cc..1cd317f 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -30,11 +30,12 @@ void pass_or_fail(const char *file_name, int line_num, const char *func, const c
void test_malloc()
{
- u32 *a = malloc(a_mag);
- u32 *b = malloc(b_mag);
- equals(a[-1], a_mag);
- equals(a[a_mag], b_mag);
- equals(b[-1], b_mag);
+ // TODO: More tests!
+ /* u32 *a = malloc(a_mag); */
+ /* u32 *b = malloc(b_mag); */
+ /* equals(a[-1], a_mag); */
+ /* equals(a[a_mag], b_mag); */
+ /* equals(b[-1], b_mag); */
}
void test_math()