diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-03-19 00:10:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 00:10:09 (GMT) |
commit | 16a090486b984f6d9e2abf04c1817dfcfeacc7ce (patch) | |
tree | 7c26ffd2fb7637b971463b6eab20db0692d04b65 /config | |
parent | e190055df39e7e88ffdb829958b66b0a6384b675 (diff) | |
download | hdf5-16a090486b984f6d9e2abf04c1817dfcfeacc7ce.zip hdf5-16a090486b984f6d9e2abf04c1817dfcfeacc7ce.tar.gz hdf5-16a090486b984f6d9e2abf04c1817dfcfeacc7ce.tar.bz2 |
Move Autotools VFD list to conclude.am (#2592)
As in develop
Diffstat (limited to 'config')
-rw-r--r-- | config/conclude.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/config/conclude.am b/config/conclude.am index fe50318..fde966e 100644 --- a/config/conclude.am +++ b/config/conclude.am @@ -263,6 +263,35 @@ build-check-p: $(LIB) $(PROGS) $(chk_TESTS) echo "===Parallel tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===";\ fi +VFD_LIST = sec2 stdio core core_paged split multi family + +# log VFD currently has file space allocation bugs +# VFD_LIST += log + +# The splitter VFD fails tests in this branch, but passes in develop. We +# can re-enable this when the issues have been corrected. +# VFD_LIST += splitter + +if DIRECT_VFD_CONDITIONAL + VFD_LIST += direct +endif +if BUILD_PARALLEL_CONDITIONAL + # MPI I/O VFD is currently incompatible with too many tests in the VFD test set + # VFD_LIST += mpio +endif +if MIRROR_VFD_CONDITIONAL + # Mirror VFD needs network configuration, etc. and isn't easy to set + # reasonable defaults for that info. + # VFD_LIST += mirror +endif +if ROS3_VFD_CONDITIONAL + VFD_LIST += ros3 +endif +# No HDFS conditional in this branch (yet) +#if HDFS_VFD_CONDITIONAL +# VFD_LIST += hdfs +#endif + # Run test with different Virtual File Driver check-vfd: $(LIB) $(PROGS) $(chk_TESTS) @for vfd in $(VFD_LIST) dummy; do \ |