diff options
author | Kimmy Mu <kmu@hdfgroup.org> | 2020-01-09 21:31:19 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-01-14 22:01:35 (GMT) |
commit | de1cdbfd3bf3e5b8afefca9d3926d869625870ab (patch) | |
tree | 84c509e3b8675c05c653eb83464a39f71d7f8f35 /testpar | |
parent | 1ef4a60b32433df1804f80fa53d2ef4c6d85261f (diff) | |
download | hdf5-de1cdbfd3bf3e5b8afefca9d3926d869625870ab.zip hdf5-de1cdbfd3bf3e5b8afefca9d3926d869625870ab.tar.gz hdf5-de1cdbfd3bf3e5b8afefca9d3926d869625870ab.tar.bz2 |
Merge pull request #2244 in HDFFV/hdf5 from ~KMU/hdf5:bugfix/intel_warnings to develop
* commit '6b1b4b3c0bdd803835efe8c531965bb9900a5363':
fix test assert fail error
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_mpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testpar/t_mpi.c b/testpar/t_mpi.c index 91b8f8c..fe78317 100644 --- a/testpar/t_mpi.c +++ b/testpar/t_mpi.c @@ -303,7 +303,7 @@ static int test_mpio_gb_file(char *filename) { mpi_rank, mpi_off, mpi_off); /* set data to some trivial pattern for easy verification */ for (j = 0; j < MB; j++) - H5_CHECKED_ASSIGN(*(buf + j), int8_t, i * mpi_size + mpi_rank, int); + *(buf + j) = (int8_t)(i * mpi_size + mpi_rank); if (VERBOSE_MED) HDfprintf(stdout, "proc %d: writing %d bytes at offset %lld\n", @@ -351,7 +351,7 @@ static int test_mpio_gb_file(char *filename) { mrc = MPI_File_read_at(fh, mpi_off, buf, MB, MPI_BYTE, &mpi_stat); INFO((mrc == MPI_SUCCESS), "GB size file read"); - H5_CHECKED_ASSIGN(expected, int8_t, i * mpi_size + (mpi_size - mpi_rank - 1), int); + expected = (int8_t)(i * mpi_size + (mpi_size - mpi_rank - 1)); vrfyerrs = 0; for (j = 0; j < MB; j++) { if ((*(buf + j) != expected) |