diff options
author | James Laird <jlaird@hdfgroup.org> | 2006-10-10 20:47:24 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2006-10-10 20:47:24 (GMT) |
commit | de383a7edfba638aff7a0c16016490b6a8a0366b (patch) | |
tree | 2cd48b906f59efd2933822828b20142093dd8b19 /test/Makefile.am | |
parent | c0c896e724c77226e3a73379f3571b323893335d (diff) | |
download | hdf5-de383a7edfba638aff7a0c16016490b6a8a0366b.zip hdf5-de383a7edfba638aff7a0c16016490b6a8a0366b.tar.gz hdf5-de383a7edfba638aff7a0c16016490b6a8a0366b.tar.bz2 |
[svn-r12741] Added support for direct I/O to check-vfd. The direct VFD is only tested
if it is enabled.
Added Direct VFD status to the configure summary.
Removed a line left over from pablo support. Oops!
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index b41d999..3b018cb 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -77,7 +77,11 @@ LDADD=libh5test.la $(LIBHDF5) ttsafe_SOURCES=ttsafe.c ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c \ ttsafe_acreate.c -VFD_LIST = sec2 stdio core split multi family +if DIRECT_VFD_CONDITIONAL + VFD_LIST = sec2 stdio core split multi family direct +else + VFD_LIST = sec2 stdio core split multi family +endif # Additional target for running timing test timings _timings: testmeta |