summaryrefslogtreecommitdiff
path: root/tests/test_malloc.c
diff options
context:
space:
mode:
authorjvoisin2023-08-20 19:02:03 +0200
committerjvoisin2023-08-20 20:51:19 +0200
commitbc50ed6c3de76c11b2dde92d0f28dd45941fc327 (patch)
tree7cedd350931edc1ebcd23aeefd8cce3a8750c7a8 /tests/test_malloc.c
parentc17d47669ff12057f732f9ae3f69b22d52b4c6b5 (diff)
Fix clang build
- s/CLFAGS/CFLAGS/ - provide paths to local includes - sprinkle more __pass_object_size__ - remove a problematic test
Diffstat (limited to 'tests/test_malloc.c')
-rw-r--r--tests/test_malloc.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test_malloc.c b/tests/test_malloc.c
deleted file mode 100644
index 360ee82..0000000
--- a/tests/test_malloc.c
+++ /dev/null
@@ -1,7 +0,0 @@
1#include "common.h"
2
3#include <stdlib.h>
4
5int main(int argc, char** argv) {
6 free(malloc(1));
7}