| -rw-r--r-- | tests/sanity-test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/sanity-test.c b/tests/sanity-test.c index 77b5cee..90e55ff 100644 --- a/tests/sanity-test.c +++ b/tests/sanity-test.c @@ -36,6 +36,8 @@ FAIL_TEST(sanity_malloc_direct) void *p; p = malloc(10); /* memory leak */ + assert(p); /* assert that we got memory, also prevents + * the malloc from getting optimized away. */ free(NULL); /* NULL must not be counted */ } |
