diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.in | 7 |
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@ |