diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2009-10-01 16:17:17 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2009-10-01 16:17:17 (GMT) |
commit | 98f6b609ad017d9bb8c018227060b7113a53b590 (patch) | |
tree | 39db4180c5fb04460b5c57dae8d7101fc5cf98b2 /hl/test/Makefile.am | |
parent | cf212aebf8eca7b58dcb5057bd6d9cdf842afb70 (diff) | |
download | hdf5-98f6b609ad017d9bb8c018227060b7113a53b590.zip hdf5-98f6b609ad017d9bb8c018227060b7113a53b590.tar.gz hdf5-98f6b609ad017d9bb8c018227060b7113a53b590.tar.bz2 |
[svn-r17566] Fix for Bug 1562. H5DSis_attached needed to account for platform dependent types. Added test and test files for LE and BE dimension scales. Reworked part of test_ds file as part of debug.
Added missing H5Tclose in region reference routines.
H5DS.c checked for other locations which need to account for platform dependent types in dealing with ds_list_t. Added generator program for test files of LE and BE dimension scales.
Tested: local linux, h5committest
Diffstat (limited to 'hl/test/Makefile.am')
-rw-r--r-- | hl/test/Makefile.am | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/hl/test/Makefile.am b/hl/test/Makefile.am index 1e8a380..d20b7d3 100644 --- a/hl/test/Makefile.am +++ b/hl/test/Makefile.am @@ -32,8 +32,19 @@ LDADD=$(LIBH5_HL) $(LIBH5TEST) $(LIBHDF5) TEST_PROG=test_lite test_image test_table test_ds test_packet check_PROGRAMS=$(TEST_PROG) +# These programs generate test files for the tests. They don't need to be +# compiled every time we want to test the library. However, putting +# them in a conditional causes automake to generate rules so that they +# can be built by hand. They can also be built by specifying +# --enable-build-all at configure time. +BUILD_ALL_PROGS=gen_test_ds + +if BUILD_ALL_CONDITIONAL + noinst_PROGRAMS=$(BUILD_ALL_PROGS) +endif + # Temporary files. These files are the ones created by running `make test'. -CHECK_CLEANFILES+=combine_tables[1-2].h5 test_ds[1-7].h5 test_image[1-3].h5 \ +CHECK_CLEANFILES+=combine_tables[1-2].h5 test_ds[1-9].h5 test_image[1-3].h5 \ test_lite[1-2].h5 test_table.h5 test_packet_table.h5 \ test_packet_compress.h5 |