diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-30 16:41:14 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-06-30 16:41:14 (GMT) |
commit | e0d268380aaf032299d2792f760584d39b382425 (patch) | |
tree | d6af7d3cd7ac13ac9d573ea7dcb61dd716231caa /test/Makefile.in | |
parent | f0eb18d1403feed86832280780bf07adac40eb0e (diff) | |
download | hdf5-e0d268380aaf032299d2792f760584d39b382425.zip hdf5-e0d268380aaf032299d2792f760584d39b382425.tar.gz hdf5-e0d268380aaf032299d2792f760584d39b382425.tar.bz2 |
[svn-r8770]
Purpose: New feature and its test
Description: Added API H5Fget_name. It returns the name of file by object ID(file, group, dataset, named datatype, attribute) which belongs to the file. filename.c tests this function.
Platforms tested: h5committest
Misc. update: MANIFEST, RELEASE.txt
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index ad916bf..358dd25 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 dangle + ntypes dangle filename TIMINGS=testmeta @@ -60,7 +60,8 @@ MOSTLYCLEAN=cmpd_dset.h5 compact_dataset.h5 dataset.h5 extend.h5 istore.h5 \ tmisc13b.h5 tmisc14.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 ntypes.h5 dangle.h5 test_filters.h5 + new_move_[ab].h5 ntypes.h5 dangle.h5 test_filters.h5 \ + get_file_name.h5 CLEAN=$(TIMINGS) @@ -78,7 +79,7 @@ TEST_SRC=big.c bittests.c cmpd_dset.c dsets.c dtypes.c extend.c \ unlink.c enum.c ttsafe.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 dangle.c + set_extent.c getname.c file_handle.c ntypes.c dangle.c filename.c TEST_OBJ=$(TEST_SRC:.c=.lo) @@ -219,4 +220,7 @@ ntypes: ntypes.lo dangle: dangle.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ dangle.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) +filename: filename.lo + @$(LT_LINK_EXE) $(CFLAGS) -o $@ filename.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS) + @CONCLUDE@ |