diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-13 20:07:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-05-13 20:07:05 (GMT) |
commit | f3999dd43097ba521f875fcc8544c46018cfc501 (patch) | |
tree | 0daf76a02cb9f98bd7433215bbf8085cf7838b41 /test/Makefile.in | |
parent | c09dbf51850ad732c31e206c4841becf3ece067b (diff) | |
download | hdf5-f3999dd43097ba521f875fcc8544c46018cfc501.zip hdf5-f3999dd43097ba521f875fcc8544c46018cfc501.tar.gz hdf5-f3999dd43097ba521f875fcc8544c46018cfc501.tar.bz2 |
[svn-r6870] Purpose:
New test
Description:
Added test to check for dangling objects being handled correctly by the
library.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committested
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 4054f47..5755d77 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -28,7 +28,7 @@ TEST_PROGS=testhdf5 lheap ohdr stab gheap hyperslab istore bittests dtypes dsets cmpd_dset extend external links unlink big mtime fillval mount \ flush1 flush2 enum gass_write gass_read gass_append set_extent \ srb_write srb_append srb_read ttsafe stream_test getname file_handle \ - ntypes + ntypes dangle TIMINGS=testmeta @@ -60,7 +60,7 @@ MOSTLYCLEAN=cmpd_dset.h5 compact_dataset.h5 dataset.h5 extend.h5 istore.h5 \ tmisc4b.h5 tmisc5.h5 tmisc6.h5 tmisc7.h5 tmisc8.h5 tmisc9.h5 \ set_extent_read.h5 set_extent_create.h5 getname.h5 getname1.h5 \ getname2.h5 getname3.h5 sec2_file.h5 family_file000[0-3][0-9].h5 \ - multi_file-[rs].h5 core_file new_move_[ab].h5 + multi_file-[rs].h5 core_file new_move_[ab].h5 ntypes.h5 dangle.h5 CLEAN=$(TIMINGS) @@ -78,7 +78,7 @@ TEST_SRC=big.c bittests.c cmpd_dset.c dsets.c dtypes.c extend.c \ ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c ttsafe_acreate.c \ gass_write.c gass_read.c gass_append.c srb_read.c srb_write.c \ srb_append.c stream_test.c set_extent.c getname.c file_handle.c \ - ntypes.c + ntypes.c dangle.c TEST_OBJ=$(TEST_SRC:.c=.lo) @@ -212,4 +212,7 @@ file_handle: file_handle.lo ntypes: ntypes.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ ntypes.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +dangle: dangle.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ dangle.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |