summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorThomas Radke <tradke@aei.mpg.de>2000-09-15 11:54:06 (GMT)
committerThomas Radke <tradke@aei.mpg.de>2000-09-15 11:54:06 (GMT)
commit90a95467e6b0cfb934740594f6cf62cfaaf8f4c5 (patch)
treea531b192965b623b5fac16caea18f50c6d236b9f /test
parentbc5f379e7de86face45f6827358721272b75a49f (diff)
downloadhdf5-90a95467e6b0cfb934740594f6cf62cfaaf8f4c5.zip
hdf5-90a95467e6b0cfb934740594f6cf62cfaaf8f4c5.tar.gz
hdf5-90a95467e6b0cfb934740594f6cf62cfaaf8f4c5.tar.bz2
[svn-r2561] Purpose:
Add the Stream VFD test program to the 'make check' targets. Description: Added stream_test to the TEST_PROGS variable and a rule to build it.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index ac2f72c..062b46d 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -20,7 +20,7 @@ RUNTEST=$(LT_RUN)
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 dpss_write \
- dpss_read srb_write srb_append srb_read ttsafe
+ dpss_read srb_write srb_append srb_read ttsafe stream_test
TIMINGS=iopipe chunk ragged overhead
@@ -63,7 +63,7 @@ TEST_SRC=big.c bittests.c chunk.c cmpd_dset.c dsets.c dtypes.c extend.c \
ttsafe.c ttsafe_dcreate.c ttsafe_error.c ttsafe_cancel.c \
ttsafe_acreate.c \
gass_write.c gass_read.c gass_append.c dpss_read.c dpss_write.c \
- srb_read.c srb_write.c srb_append.c
+ srb_read.c srb_write.c srb_append.c stream_test.c
TEST_OBJ=$(TEST_SRC:.c=.lo)
@@ -193,5 +193,8 @@ srb_write: srb_write.lo
srb_append: srb_append.lo
@$(LT_LINK_EXE) $(CFLAGS) -o $@ srb_append.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+stream_test: stream_test.lo
+ @$(LT_LINK_EXE) $(CFLAGS) -o $@ stream_test.lo $(LIB) $(LIBHDF5) $(LDFLAGS) $(LIBS)
+
@CONCLUDE@