diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-21 21:30:49 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-21 21:30:49 (GMT) |
commit | 643e9a38bd78fcf6c16127731693e6720bc6b22b (patch) | |
tree | 4daf788deb468f597976c3ad8adb5f6de060b0b4 /hl/test | |
parent | f712d13301d9649a16beb8b3e6e9456a6c9b1fc1 (diff) | |
download | hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.zip hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.tar.gz hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.tar.bz2 |
[svn-r10062] Purpose:
Bug fix
Description:
Discovered two small bugs.
When MAKE is defined as the empty string, a test in configure incorrectly
identifies it as pmake. Skipped this test if $MAKE is the empty string.
Two .h5 files produced by a test in the hl directory were not cleaned.
Updated the Makefile.am.
Platforms tested:
heping, modi4 (very minor changes)
Diffstat (limited to 'hl/test')
-rw-r--r-- | hl/test/Makefile.am | 2 | ||||
-rw-r--r-- | hl/test/Makefile.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hl/test/Makefile.am b/hl/test/Makefile.am index 40ae35e..e4256a1 100644 --- a/hl/test/Makefile.am +++ b/hl/test/Makefile.am @@ -22,7 +22,7 @@ TEST_PROG=test_lite test_image test_table test_ds check_PROGRAMS=$(TEST_PROG) # Temporary files. These files are the ones created by running `make test'. -MOSTLYCLEANFILES=combine_tables[1-2].h5 test_ds.h5 test_image.h5 \ +MOSTLYCLEANFILES=combine_tables[1-2].h5 test_ds[1-2].h5 test_image.h5 \ test_lite[1-2].h5 test_table.h5 include $(top_srcdir)/config/conclude.am diff --git a/hl/test/Makefile.in b/hl/test/Makefile.in index d3aef8e..cd8aa48 100644 --- a/hl/test/Makefile.in +++ b/hl/test/Makefile.in @@ -193,7 +193,7 @@ TEST_PROG = test_lite test_image test_table test_ds check_PROGRAMS = $(TEST_PROG) # Temporary files. These files are the ones created by running `make test'. -MOSTLYCLEANFILES = combine_tables[1-2].h5 test_ds.h5 test_image.h5 \ +MOSTLYCLEANFILES = combine_tables[1-2].h5 test_ds[1-2].h5 test_image.h5 \ test_lite[1-2].h5 test_table.h5 |