[svn-r11992] Purpose:

Improvement.

Description:
The t_cache takes a long long time to run and it tests HDF5 calls.
Move it to the back and let more basic tests to run first so that
basic features are tested first.

Platforms tested:
Tested in heping with pp.
This commit is contained in:
Albert Cheng 2006-03-01 00:54:07 -05:00
parent 0004361cc7
commit 516c242b04
2 changed files with 4 additions and 5 deletions

View File

@ -24,7 +24,7 @@ INCLUDES=-I$(top_srcdir)/src -I$(top_srcdir)/test
# Test programs and scripts. These are our main targets.
#
TEST_PROG_PARA=t_cache t_mpi t_posix_compliant t_fphdf5 testphdf5
TEST_PROG_PARA=t_mpi t_posix_compliant t_fphdf5 testphdf5 t_cache
TEST_SCRIPT_PARA=testph5.sh
check_PROGRAMS = $(TEST_PROG_PARA)

View File

@ -65,9 +65,8 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
mkinstalldirs = $(SHELL) $(top_srcdir)/bin/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/src/H5config.h
CONFIG_CLEAN_FILES = testph5.sh
am__EXEEXT_1 = t_cache$(EXEEXT) t_mpi$(EXEEXT) \
t_posix_compliant$(EXEEXT) t_fphdf5$(EXEEXT) \
testphdf5$(EXEEXT)
am__EXEEXT_1 = t_mpi$(EXEEXT) t_posix_compliant$(EXEEXT) \
t_fphdf5$(EXEEXT) testphdf5$(EXEEXT) t_cache$(EXEEXT)
t_cache_SOURCES = t_cache.c
t_cache_OBJECTS = t_cache.$(OBJEXT)
t_cache_LDADD = $(LDADD)
@ -357,7 +356,7 @@ INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/test
# Test programs and scripts. These are our main targets.
#
TEST_PROG_PARA = t_cache t_mpi t_posix_compliant t_fphdf5 testphdf5
TEST_PROG_PARA = t_mpi t_posix_compliant t_fphdf5 testphdf5 t_cache
TEST_SCRIPT_PARA = testph5.sh
check_SCRIPTS = $(TEST_SCRIPT)
testphdf5_SOURCES = testphdf5.c t_dset.c t_file.c t_mdset.c t_ph5basic.c \