summaryrefslogtreecommitdiffstats
path: root/test/Makefile.in
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2004-06-30 13:45:07 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2004-06-30 13:45:07 (GMT)
commit358b8545dd9e3baa4b63c88a0d28aa8d7afb065b (patch)
tree50e0eac8be56d523b056778f4d3cac14dd777c28 /test/Makefile.in
parent62f6531f2d3910a53c333047fdd941539eb6908f (diff)
downloadhdf5-358b8545dd9e3baa4b63c88a0d28aa8d7afb065b.zip
hdf5-358b8545dd9e3baa4b63c88a0d28aa8d7afb065b.tar.gz
hdf5-358b8545dd9e3baa4b63c88a0d28aa8d7afb065b.tar.bz2
[svn-r8765] Purpose: New feature and its test.
Description: Added new API H5Fget_name and new test program called filename.c. This function returns the name of the file by object ID(file, group, dataset, named datatype, and attribute) which belongs to the file. Platforms tested: h5committest and fuss. Misc. update: MANIFEST and RELEASE.txt
Diffstat (limited to 'test/Makefile.in')
-rw-r--r--test/Makefile.in9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 78e25d1..7121290 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -31,7 +31,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 dtransform
+ ntypes dangle dtransform filename
## Test programs for Error API. Only compile them but let testerror.sh run
## them to compare the output error messages with standard ones. 'make check'
@@ -68,7 +68,7 @@ MOSTLYCLEAN=cmpd_dset.h5 compact_dataset.h5 dataset.h5 extend.h5 istore.h5 \
getname.h5 getname[1-3].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 error_test.h5 err_compat.h5 \
- dtransform.h5 test_filters.h5
+ dtransform.h5 test_filters.h5 get_file_name.h5
CLEAN=$(TIMINGS)
@@ -87,7 +87,7 @@ TEST_SRC=big.c bittests.c cmpd_dset.c dsets.c dtypes.c extend.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 error_test.c \
- err_compat.c dtransform.c
+ err_compat.c dtransform.c filename.c
TEST_OBJ=$(TEST_SRC:.c=.lo)
@@ -238,4 +238,7 @@ err_compat: err_compat.lo
dtransform: dtransform.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ dtransform.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+filename: filename.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ filename.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
@CONCLUDE@