mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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:
parent
068e29b9f1
commit
0f83bd0964
11
test/fheap.c
11
test/fheap.c
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user