Home | History | Annotate | Download | only in tests
      1 #include <stdlib.h>
      2 
      3 int main(void)
      4 {
      5    int i;
      6    for (i = 0; i < 200; i++) {
      7       malloc(400*i);    // Divisible by 16 -- no slop.
      8    }
      9    return 0;
     10 }
     11