summaryrefslogtreecommitdiffstats
path: root/testpar
diff options
context:
space:
mode:
authorRichard.Warren <Richard.Warren@mayll.ad.hdfgroup.org>2017-10-17 20:23:54 (GMT)
committerRichard.Warren <Richard.Warren@mayll.ad.hdfgroup.org>2017-10-17 20:23:54 (GMT)
commitc230ffa26873f256092d68de854de5c7f09bf1ee (patch)
tree1f91cf2c4f8674c9de87960b6e961f987133ccc6 /testpar
parent3dde6d0e32461f46630f814a2fdfbd4c813703bf (diff)
downloadhdf5-c230ffa26873f256092d68de854de5c7f09bf1ee.zip
hdf5-c230ffa26873f256092d68de854de5c7f09bf1ee.tar.gz
hdf5-c230ffa26873f256092d68de854de5c7f09bf1ee.tar.bz2
Make fixes to avoid test failures in 'production' mode builds
Diffstat (limited to 'testpar')
-rw-r--r--testpar/t_pread.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/testpar/t_pread.c b/testpar/t_pread.c
index 7f23b9b..b2eec97 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,10 +162,11 @@ 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,
+ if ( h5_fixname((const char *)group_filename, H5P_DEFAULT, data_filename,
sizeof(data_filename)) == NULL ) {
pass = FALSE;
failure_mssg = "h5_fixname(0) failed.\n";
@@ -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,