X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=boehm-gc%2Ftests%2Fleak_test.c;fp=boehm-gc%2Ftests%2Fleak_test.c;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=421d0c6cd4a6f9ec5544285a18797c5dc2147b85;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/boehm-gc/tests/leak_test.c b/boehm-gc/tests/leak_test.c deleted file mode 100644 index 421d0c6c..00000000 --- a/boehm-gc/tests/leak_test.c +++ /dev/null @@ -1,21 +0,0 @@ -#include "leak_detector.h" - -main() { - int *p[10]; - int i; - GC_find_leak = 1; /* for new collect versions not compiled */ - /* with -DFIND_LEAK. */ - for (i = 0; i < 10; ++i) { - p[i] = malloc(sizeof(int)+i); - } - CHECK_LEAKS(); - for (i = 1; i < 10; ++i) { - free(p[i]); - } - for (i = 0; i < 9; ++i) { - p[i] = malloc(sizeof(int)+i); - } - CHECK_LEAKS(); - CHECK_LEAKS(); - CHECK_LEAKS(); -}