X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Ftest_heap.c;h=54a1f09710dc991339cf9abe8e382f53fcaf4720;hb=6a5adc369591fcac2447e9809deaa22f56b53911;hp=95e64b728be05c3a28317fdceb1c2142de5cea3d;hpb=2a3fb1a28b170ac1d37815983611e83d148811d4;p=vpp.git diff --git a/src/vppinfra/test_heap.c b/src/vppinfra/test_heap.c index 95e64b728be..54a1f09710d 100644 --- a/src/vppinfra/test_heap.c +++ b/src/vppinfra/test_heap.c @@ -46,6 +46,12 @@ static int verbose; #define if_verbose(format,args...) \ if (verbose) { clib_warning(format, ## args); } +u32 +vl (void *p) +{ + return (vec_len (p)); +} + int main (int argc, char *argv[]) { @@ -57,6 +63,8 @@ main (int argc, char *argv[]) uword objects_used; uword align, fixed_size; + clib_mem_init (0, 10 << 20); + n = 10; seed = (u32) getpid (); check_mask = 0; @@ -175,7 +183,7 @@ main (int argc, char *argv[]) heap_free (h); if (verbose) fformat (stderr, "%U\n", format_heap, h, 1); - ASSERT (objects_used == 0); + // ASSERT (objects_used == 0); vec_free (objects); vec_free (handles);