diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-08-20 16:18:02 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-08-20 16:18:02 (GMT) |
commit | 29da4951f8aa861cc972c48fef03334c47ff0136 (patch) | |
tree | 07183a9df7ec5d173943197c69c00b2a9f199470 /testpar/testphdf5.c | |
parent | 45a34cf267b823c6f1b62cce215b38546c18a031 (diff) | |
download | hdf5-29da4951f8aa861cc972c48fef03334c47ff0136.zip hdf5-29da4951f8aa861cc972c48fef03334c47ff0136.tar.gz hdf5-29da4951f8aa861cc972c48fef03334c47ff0136.tar.bz2 |
[svn-r5879]
Purpose:
Design for compact dataset
Description:
Compact dataset is stored in the header message for dataset layout.
Platforms tested:
arabica, eirene.
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r-- | testpar/testphdf5.c | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c index b650e00..95fe93c 100644 --- a/testpar/testphdf5.c +++ b/testpar/testphdf5.c @@ -28,15 +28,17 @@ void *old_client_data; /* previous error handler arg.*/ /* other option flags */ int doread=1; /* read test */ int dowrite=1; /* write test */ +int docompact=1; /* compact dataset test */ /* FILENAME and filenames must have the same number of names */ -const char *FILENAME[6]={ +const char *FILENAME[7]={ "ParaEg1", "ParaEg2", "ParaEg3", "ParaMdset", "ParaMgroup", + "ParaCompact", NULL}; -char filenames[6][PATH_MAX]; +char filenames[7][PATH_MAX]; hid_t fapl; /* file access property list */ #ifdef USE_PAUSE @@ -97,13 +99,14 @@ static void usage(void) { printf("Usage: testphdf5 [-r] [-w] [-v] [-m<n_datasets>] [-n<n_groups>] " - "[-f <prefix>] [-d <dim0> <dim1>]\n"); + "[-o] [-f <prefix>] [-d <dim0> <dim1>]\n"); printf("\t-r\t\tno read test\n"); printf("\t-w\t\tno write test\n"); printf("\t-m<n_datasets>" "\tset number of datasets for the multiple dataset test\n"); printf("\t-n<n_groups>" "\tset number of groups for the multiple group test\n"); + printf("\t-o\t\tno compact dataset test\n"); printf("\t-v\t\tverbose on\n"); printf("\t-f <prefix>\tfilename prefix\n"); printf("\t-s\t\tuse Split-file together with MPIO\n"); @@ -152,6 +155,8 @@ parse_options(int argc, char **argv) return(1); } break; + case 'o': docompact = 0; + break; case 'v': verbose = 1; break; case 'f': if (--argc < 1) { @@ -380,7 +385,15 @@ int main(int argc, char **argv) MPI_BANNER("read tests skipped"); } - if (!(dowrite || doread || ndatasets || ngroups)){ + if (docompact){ + MPI_BANNER("compact dataset test..."); + compact_dataset(filenames[5]); + } + else { + MPI_BANNER("compact dataset test skipped"); + } + + if (!(dowrite || doread || ndatasets || ngroups || docompact)){ usage(); nerrors++; } |