Update memcheck description of C++ new and delete
[valgrind.git] / massif / tests / insig.c
blob111ddabd923be053b2fd139f91e929975cf60418
1 #include <stdlib.h>
3 // In this test, the size of the insignificant nodes is greater than the
4 // size of two of the significant nodes. This is quite common in big
5 // programs, but not so common in small tests, so we test for it here.
6 int main(void)
8 malloc(16000); // all sizes are divisible by 16 -- no slop
9 malloc(240);
10 malloc(192);
11 malloc(16);
12 malloc(16);
13 malloc(16);
14 malloc(16);
15 malloc(16);
16 malloc(16);
17 malloc(16);
18 malloc(16);
19 malloc(16);
20 malloc(16);
21 malloc(16);
22 malloc(16);
23 malloc(16);
24 malloc(16);
25 malloc(16);
26 malloc(16);
27 malloc(16);
28 malloc(16);
29 malloc(16);
30 malloc(16);
33 return 0;