diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2005-08-08 07:32:27 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2005-08-08 07:32:27 (GMT) |
commit | ea15f348a1254b5a4ed3e8039f191a0430e4c3f2 (patch) | |
tree | ae53534ce7bc8e02850e0ef63a3393a963dcb2c2 /testpar/Makefile.am | |
parent | a0f06d0961d612588e700eef40eaaf5db7e63094 (diff) | |
download | hdf5-ea15f348a1254b5a4ed3e8039f191a0430e4c3f2.zip hdf5-ea15f348a1254b5a4ed3e8039f191a0430e4c3f2.tar.gz hdf5-ea15f348a1254b5a4ed3e8039f191a0430e4c3f2.tar.bz2 |
[svn-r11208] Purpose:
Bug fix and code minor cleanup.
Description:
The attempt to redirect stderr together to the log files were
done in the wrong order such that stderr output goes to where
stdout WAS. Fixed that.
Code minor cleanup--use shell variables to hold the name of the
log file and the test instead of generating them repeatedly. This
makes easier code reading, less crowded and avoid typos.
Only conclude.in is changed. The Makefile.in changes are all
derived from automake.
Platforms tested:
h5committested.
Diffstat (limited to 'testpar/Makefile.am')
-rw-r--r-- | testpar/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testpar/Makefile.am b/testpar/Makefile.am index 92985b8..d1ecb25 100644 --- a/testpar/Makefile.am +++ b/testpar/Makefile.am @@ -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_mpi t_fphdf5 testphdf5 +TEST_PROG_PARA=t_mpi t_fphdf5 testphdf5 t_chunk_alloc TEST_SCRIPT_PARA=testph5.sh check_PROGRAMS = $(TEST_PROG_PARA) |