diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2020-12-12 15:25:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-12 15:25:54 (GMT) |
commit | f6dce729e8cf3d6d8675fbbfe1d66ac044ba02fb (patch) | |
tree | d1d10022b843a89da8c8c62ea97433009373eadd /test/Makefile.am | |
parent | 9e72b7f834eba0e7225bbec858da14431e0c6954 (diff) | |
download | hdf5-f6dce729e8cf3d6d8675fbbfe1d66ac044ba02fb.zip hdf5-f6dce729e8cf3d6d8675fbbfe1d66ac044ba02fb.tar.gz hdf5-f6dce729e8cf3d6d8675fbbfe1d66ac044ba02fb.tar.bz2 |
Moves the lists of VOL connectors and VFDs in Autotools builds (#162)
The VOL_LIST variable used in the Autotools was duplicated in many
subdirectories. It's been moved to config/conclude.am to avoid
duplication. VFD_LIST was also moved to conclude.am.
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 9e74e00..6bc340a 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -151,19 +151,6 @@ ttsafe_SOURCES=ttsafe.c ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c \ cache_image_SOURCES=cache_image.c genall5.c mirror_vfd_SOURCES=mirror_vfd.c genall5.c -VFD_LIST = sec2 stdio core core_paged split multi family -if DIRECT_VFD_CONDITIONAL - VFD_LIST += direct -endif - -# Test with just the native connector, with a single pass-through connector -# and with a doubly-stacked pass-through. -# -# native = 0 -# pass-through = 1 -VOL_LIST = native "pass_through under_vol=0;under_info={}" \ - "pass_through under_vol=1;under_info={under_vol=0;under_info={}}" - # Additional target for running timing test timings _timings: testmeta @for timing in $(TIMINGS) dummy; do \ @@ -173,7 +160,6 @@ timings _timings: testmeta fi; \ done; - # The flush1 test must run before the flush2 test flush2.chkexe_: flush1.chkexe_ |