[svn-r10122] Purpose:

typo fix and small improvement.

Description:
t_coll_chunk.c:
ccdataset_vrfy() was using a wrong routine name to identify itself.

testphdf5.c:
Add a definition of NFILENAME to be the common dimension size of
FILENAME[] and filenames[][] since they must have the same first
dimension size.

Platforms tested:
h5committested.
This commit is contained in:
Albert Cheng 2005-03-02 12:06:39 -05:00
parent e044ae5ee2
commit bf815e12e7
2 changed files with 5 additions and 4 deletions

View File

@ -490,6 +490,6 @@ ccdataset_vrfy(hsize_t start[], hsize_t count[], hsize_t stride[], hsize_t block
if (vrfyerrs > MAX_ERR_REPORT && !VERBOSE_MED)
printf("[more errors ...]\n");
if (vrfyerrs)
printf("%d errors found in dataset_vrfy\n", vrfyerrs);
printf("%d errors found in ccdataset_vrfy\n", vrfyerrs);
return(vrfyerrs);
}

View File

@ -41,13 +41,14 @@ void *old_client_data; /* previous error handler arg.*/
/* FILENAME and filenames must have the same number of names.
* Use PARATESTFILE in general and use a separated filename only if the file
* created in one test is accessed by a different test.
* FILENAME[0] is reserved as the file name for PARATESTFILE.
* filenames[0] is reserved as the file name for PARATESTFILE.
*/
#define NFILENAME 2
#define PARATESTFILE filenames[0]
const char *FILENAME[2]={
const char *FILENAME[NFILENAME]={
"ParaTest",
NULL};
char filenames[2][PATH_MAX];
char filenames[NFILENAME][PATH_MAX];
hid_t fapl; /* file access property list */
#ifdef USE_PAUSE