diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1998-07-05 22:58:37 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1998-07-05 22:58:37 (GMT) |
commit | ec08f7b182ffae35a9ba633ea9c164326b990b5a (patch) | |
tree | c611735ccfdbccc989afb160c2979d93d7af6976 /testpar/testphdf5.h | |
parent | 99c46b756c6a15e6d304f14a178bb44dae0f6d8f (diff) | |
download | hdf5-ec08f7b182ffae35a9ba633ea9c164326b990b5a.zip hdf5-ec08f7b182ffae35a9ba633ea9c164326b990b5a.tar.gz hdf5-ec08f7b182ffae35a9ba633ea9c164326b990b5a.tar.bz2 |
[svn-r448] Updated with more tests for extendable datasets such as testing
the expected failures in writing data beyond the current dimension
sizes and also in attempting to extend a dataset opened RDONLY.
Diffstat (limited to 'testpar/testphdf5.h')
-rw-r--r-- | testpar/testphdf5.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testpar/testphdf5.h b/testpar/testphdf5.h index 352a96a..ba60278 100644 --- a/testpar/testphdf5.h +++ b/testpar/testphdf5.h @@ -46,8 +46,8 @@ /* Constants definitions */ /* DIM1 and DIM2 must be multiples of mpi-sizes to be used. */ /* E.g. 24, a multiple of 2, 3, 4, 6, 8, 12, would be a good choice. */ -#define DIM1 12 -#define DIM2 12 +#define DIM1 24 +#define DIM2 24 #define RANK 2 #define DATASETNAME1 "Data1" #define DATASETNAME2 "Data2" @@ -63,5 +63,7 @@ typedef int DATATYPE; /* shared global variables */ extern int nerrors; /* errors count */ extern int verbose; /* verbose, default as no. */ +extern herr_t (*old_func)(void*); /* previous error handler */ +extern void *old_client_data; /* previous error handler arg.*/ #endif /* PHDF5TEST_H */ |