diff options
Diffstat (limited to 'test/istore.c')
-rw-r--r-- | test/istore.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/istore.c b/test/istore.c index fb02e20..15753a8 100644 --- a/test/istore.c +++ b/test/istore.c @@ -543,8 +543,11 @@ test_sparse(H5F_t *f, const char *prefix, size_t nblocks, static void cleanup(void) { - remove(FILENAME); + if (!getenv ("HDF5_NOCLEANUP")) { + remove(FILENAME); + } } + /*------------------------------------------------------------------------- * Function: main |