[svn-r13282] Skip this test if the driver is direct and the express test mode is

set on because it takes too long on copper.
This commit is contained in:
Raymond Lu 2007-02-12 16:07:40 -05:00
parent 068e29b9f1
commit 0f83bd0964

View File

@ -15555,7 +15555,14 @@ main(void)
envval = HDgetenv("HDF5_DRIVER");
if(envval == NULL)
envval = "nomatch";
if(HDstrcmp(envval, "core") && HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") && HDstrcmp(envval, "family") && HDstrcmp(envval, "stdio"))
/* This test case with Direct driver has a poor performance on
* NCSA copper, though it works. Skip it if the express mode is set on
* and worry about the performance later.
*/
if((HDstrcmp(envval, "core") && HDstrcmp(envval, "split") && HDstrcmp(envval, "multi") &&
HDstrcmp(envval, "family") && HDstrcmp(envval, "stdio")) &&
!(!HDstrcmp(envval, "direct") && (ExpressMode > 1)))
{
/* Initialize heap creation parameters */
@ -16010,7 +16017,7 @@ HDfprintf(stderr, "Uncomment cleanup!\n");
#endif /* QAK */
} /* end if(HDstrcmp(envval=="...")) */
else {
printf("All fractal heap tests skipped - Incompatible with current Virtual File Driver");
printf("All fractal heap tests skipped - Incompatible with current Virtual File Driver\n");
}
return 0;