diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-04-03 02:50:50 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-04-03 02:50:50 (GMT) |
commit | b4331b2ff33549d7401ed63d830b8a7907679677 (patch) | |
tree | faaea3e39f03cbd619fb7b149c6a52a636a73181 /test/testframe.c | |
parent | 0b16cecb994ad3d1f31883933706decefecc68df (diff) | |
download | hdf5-b4331b2ff33549d7401ed63d830b8a7907679677.zip hdf5-b4331b2ff33549d7401ed63d830b8a7907679677.tar.gz hdf5-b4331b2ff33549d7401ed63d830b8a7907679677.tar.bz2 |
[svn-r23529] Description:
Stop aliasing property to indicate internal collective metadata operations
with property to perform collective raw data operations from the application.
Tested on:
Mac OSX/64 10.8.3 (amazon) w/paralllel
Diffstat (limited to 'test/testframe.c')
-rw-r--r-- | test/testframe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testframe.c b/test/testframe.c index 8ab7a5b..af6e975 100644 --- a/test/testframe.c +++ b/test/testframe.c @@ -26,7 +26,7 @@ /* * Definitions for the testing structure. */ -#define MAXNUMOFTESTS 50 +#define MAXNUMOFTESTS 60 #define MAXTESTNAME 16 #define MAXTESTDESC 64 @@ -73,7 +73,7 @@ AddTest(const char *TheName, void (*TheCall) (void), void (*Cleanup) (void), con { /* Sanity checking */ if (Index >= MAXNUMOFTESTS) { - printf("Too many tests added, increase MAXNUMOFTEST(%d).\n", + printf("Too many tests added, increase MAXNUMOFTESTS(%d).\n", MAXNUMOFTESTS); exit(-1); } /* end if */ |