summaryrefslogtreecommitdiffstats
path: root/testpar/t_pread.c
diff options
context:
space:
mode:
authorRichard Warren <Richard.Warren@hdfgroup.org>2017-11-02 15:25:44 (GMT)
committerRichard Warren <Richard.Warren@hdfgroup.org>2017-11-02 15:25:44 (GMT)
commitef1f2f61e2a0cc9540b44d48ad417f3527df70aa (patch)
tree0068dba2eaecfd542be18d07d24838a9135ba1bf /testpar/t_pread.c
parent8f4d69dcf56b21b6f70159af4b936b76b67a2512 (diff)
parent337cf6a29d6b6056ed2a418155899676d474daa8 (diff)
downloadhdf5-ef1f2f61e2a0cc9540b44d48ad417f3527df70aa.zip
hdf5-ef1f2f61e2a0cc9540b44d48ad417f3527df70aa.tar.gz
hdf5-ef1f2f61e2a0cc9540b44d48ad417f3527df70aa.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into optimize_superblock_read
Diffstat (limited to 'testpar/t_pread.c')
-rw-r--r--testpar/t_pread.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/testpar/t_pread.c b/testpar/t_pread.c
index 7f23b9b..b5a84f2 100644
--- a/testpar/t_pread.c
+++ b/testpar/t_pread.c
@@ -99,11 +99,11 @@ generate_test_file( MPI_Comm comm, int mpi_rank, int group_id )
FILE *header = NULL;
const char *fcn_name = "generate_test_file()";
const char *failure_mssg = NULL;
- const char *group_filename = NULL;
+ char *group_filename = NULL;
char data_filename[FILENAME_BUF_SIZE];
char reloc_data_filename[FILENAME_BUF_SIZE];
char prolog_filename[FILENAME_BUF_SIZE];
- int file_index;
+ int file_index = 0;
int group_size;
int group_rank;
int local_failure = 0;
@@ -162,7 +162,8 @@ generate_test_file( MPI_Comm comm, int mpi_rank, int group_id )
* is used to call into the h5_fixname function. No
* need to worry that we reassign it for each file!
*/
- HDassert((group_filename = FILENAMES[file_index]));
+ group_filename = FILENAMES[file_index];
+ HDassert( group_filename );
/* Assign the 'data_filename' */
if ( h5_fixname(group_filename, H5P_DEFAULT, data_filename,
@@ -174,7 +175,8 @@ generate_test_file( MPI_Comm comm, int mpi_rank, int group_id )
if ( pass ) {
- HDassert( (group_filename = FILENAMES[file_index+1]) );
+ group_filename = FILENAMES[file_index+1];
+ HDassert( group_filename );
/* Assign the 'reloc_data_filename' */
if ( h5_fixname(group_filename, H5P_DEFAULT, reloc_data_filename,
@@ -186,8 +188,8 @@ generate_test_file( MPI_Comm comm, int mpi_rank, int group_id )
}
if ( pass ) {
-
- HDassert( (group_filename = FILENAMES[file_index+2]) );
+ group_filename = FILENAMES[file_index+2];
+ HDassert( group_filename );
/* Assign the 'prolog_filename' */
if ( h5_fixname(group_filename, H5P_DEFAULT, prolog_filename,