diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-08-24 00:08:29 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-08-24 00:08:29 (GMT) |
commit | d7a4ce413acd06e88948ca37ddfabce7909d666a (patch) | |
tree | 71405e8d5046ce7c9ef49cde2d482d0c45bd0b75 /testpar/t_mdset.c | |
parent | 731fc09dad2322c8def9a761afdc6f1e7e460b2f (diff) | |
download | hdf5-d7a4ce413acd06e88948ca37ddfabce7909d666a.zip hdf5-d7a4ce413acd06e88948ca37ddfabce7909d666a.tar.gz hdf5-d7a4ce413acd06e88948ca37ddfabce7909d666a.tar.bz2 |
[svn-r9141] Purpose:
Code cleanup.
Removed bunch of old options (r,w,v,i,b,e) that are no longer valid
or useful after adopting the general test interface. Moved the test
of sizeof MPI_Offset into the test routine itself.
Platforms tested:
Eirene and Sol using pp mode.
Diffstat (limited to 'testpar/t_mdset.c')
-rw-r--r-- | testpar/t_mdset.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testpar/t_mdset.c b/testpar/t_mdset.c index f04be6d..3ed6ef4 100644 --- a/testpar/t_mdset.c +++ b/testpar/t_mdset.c @@ -315,6 +315,9 @@ void big_dataset(void) MPI_Comm_rank (MPI_COMM_WORLD, &mpi_rank); MPI_Comm_size (MPI_COMM_WORLD, &mpi_size); + /* Verify MPI_Offset can handle larger than 2GB sizes */ + VRFY((sizeof(MPI_Offset)>4), "sizeof(MPI_Offset)>4"); + filename = (char *) GetTestParameters(); VRFY((mpi_size <= SIZE), "mpi_size <= SIZE"); |