diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-01-06 03:17:16 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-01-06 03:17:16 (GMT) |
commit | 89f5220d6687aa1ff3c3d19c8b05859887ecadbd (patch) | |
tree | 07701979f5f888d69d648621e18e1f2a4e37bf15 /test/h5test.c | |
parent | 1b4b706db78cd565da6671fdcfd375a94a6d6702 (diff) | |
download | hdf5-89f5220d6687aa1ff3c3d19c8b05859887ecadbd.zip hdf5-89f5220d6687aa1ff3c3d19c8b05859887ecadbd.tar.gz hdf5-89f5220d6687aa1ff3c3d19c8b05859887ecadbd.tar.bz2 |
[svn-r8020] Purpose:
Bug fix.
Description:
Cleaned up a duplicated definition of MAXNUMOFTEST that copper could
not tolerate.
Platforms tested:
"h5committested"
Diffstat (limited to 'test/h5test.c')
-rw-r--r-- | test/h5test.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/h5test.c b/test/h5test.c index 0d8f0c2..79c9da8 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -812,7 +812,8 @@ void InitTest(const char *TheName, void (*TheCall) (void), void (*Cleanup) (void), const char *TheDescr) { if (Index >= MAXNUMOFTESTS) { - printf("Uh-oh, too many tests added, increase MAXNUMOFTEST!\n"); + printf("Too many tests added, increase MAXNUMOFTEST(%d).\n", + MAXNUMOFTESTS); exit(-1); } /* end if */ HDstrcpy(Test[Index].Description, TheDescr); |