diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/istore.c | 3 | ||||
-rw-r--r-- | test/tstab.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/test/istore.c b/test/istore.c index e79696c..c50ef3f 100644 --- a/test/istore.c +++ b/test/istore.c @@ -527,7 +527,8 @@ main (int argc, char *argv[]) /* Create the test file */ if (NULL==(f=H5F_open (H5F_LOW_DFLT, FILENAME, - H5F_ACC_CREAT|H5F_ACC_WRITE|H5F_ACC_TRUNC, + (H5F_ACC_CREAT|H5F_ACC_WRITE|H5F_ACC_TRUNC| + H5F_ACC_DEBUG), NULL))) { printf ("Cannot create file %s; test aborted\n", FILENAME); exit (1); diff --git a/test/tstab.c b/test/tstab.c index d2f6de4..9bac3b7 100644 --- a/test/tstab.c +++ b/test/tstab.c @@ -238,6 +238,7 @@ test_2 (void) CHECK (fid, FAIL, "H5Fcreate"); f = H5Aatom_object (fid); CHECK (f, NULL, "H5Aatom_object"); + f->intent |= H5F_ACC_DEBUG; /* * Create a directory that has so many entries that the root |