diff options
-rw-r--r-- | test/fheap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/fheap.c b/test/fheap.c index 3aaa7e8..7773010 100644 --- a/test/fheap.c +++ b/test/fheap.c @@ -278,15 +278,17 @@ main(void) fapl = h5_fileaccess(); /* Test fractal heap creation */ +#ifdef QAK nerrors += test_create(fapl); /* Test fractal heap object insertion */ nerrors += test_abs_insert_first(fapl); +#endif /* QAK */ if(nerrors) goto error; puts("All fractal heap tests passed."); -#ifdef QAK +#ifndef QAK h5_cleanup(FILENAME, fapl); #else /* QAK */ HDfprintf(stderr, "Uncomment cleanup!\n"); |