summaryrefslogtreecommitdiffstats
path: root/testpar/t_chunk_alloc.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-01-08 17:36:10 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-01-08 17:36:10 (GMT)
commit50c5f1ab2c706e00ec546c4f5a415b4203a5db7e (patch)
tree5caa83783c8b89613aeb28db8cfdc7b55a8fadf2 /testpar/t_chunk_alloc.c
parent5da20c221e2bad9c012ff4a32b5e76bc04e386be (diff)
downloadhdf5-50c5f1ab2c706e00ec546c4f5a415b4203a5db7e.zip
hdf5-50c5f1ab2c706e00ec546c4f5a415b4203a5db7e.tar.gz
hdf5-50c5f1ab2c706e00ec546c4f5a415b4203a5db7e.tar.bz2
[svn-r25963] Do not remove the prefix in the chunk alloc file, otherwise it makes
the H5Fcreate fail when prefix is specified. tested parallel on Jam.
Diffstat (limited to 'testpar/t_chunk_alloc.c')
-rw-r--r--testpar/t_chunk_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/t_chunk_alloc.c b/testpar/t_chunk_alloc.c
index bc233c7..05fd2fc 100644
--- a/testpar/t_chunk_alloc.c
+++ b/testpar/t_chunk_alloc.c
@@ -106,7 +106,7 @@ create_chunked_dataset(const char *filename, int chunk_factor, write_type write_
VRFY((memspace >= 0), "");
/* Create a new file. If file exists its contents will be overwritten. */
- file_id = H5Fcreate(h5_rmprefix(filename), H5F_ACC_TRUNC, H5P_DEFAULT,
+ file_id = H5Fcreate(filename, H5F_ACC_TRUNC, H5P_DEFAULT,
H5P_DEFAULT);
VRFY((file_id >= 0), "H5Fcreate");