diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-04-28 21:54:39 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-04-28 21:54:39 (GMT) |
commit | e91728b3e7bef0825c1e71195cdac778575e3d25 (patch) | |
tree | d606f3da2534d3718468a89bdf29756e4a90f2f3 /config | |
parent | 948120dac1b04175ab1ac451a8addd0cccd38d89 (diff) | |
download | hdf5-e91728b3e7bef0825c1e71195cdac778575e3d25.zip hdf5-e91728b3e7bef0825c1e71195cdac778575e3d25.tar.gz hdf5-e91728b3e7bef0825c1e71195cdac778575e3d25.tar.bz2 |
[svn-r8429] Purpose:
Slight improvement.
Description:
Show directory name at the beginning and ending of running
make check in a directory. Together with the time stamp,
it will be easier to see how much time it takes to run all
the tests in one directory.
Platforms tested:
Eirene only.
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/conclude.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/conclude.in b/config/conclude.in index 497a827..5a19a48 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -36,7 +36,7 @@ TAGS: $(LIB_SRC) ## tests: $(TEST_PROGS) $(TEST_PROGS_PARA) $(TEST_SCRIPTS) $(LIB) check test _test: tests - @echo "===Tests begin `date`===" + @echo "===Tests in `echo ${PWD} | sed -e s:.*/::` begin `date`===" @for test in $(TEST_PROGS) dummy; do \ if test $$test != dummy; then \ echo "============================"; \ @@ -87,7 +87,7 @@ check test _test: tests fi; \ done; \ test $$test = dummy || false - @echo "===Tests ended `date`===" + @echo "===Tests in `echo ${PWD} | sed -e s:.*/::` ended `date`===" @for d in X $(SUBDIRS); do \ if test $$d != X; then \ (set -x; cd $$d && $(MAKE) tests) || exit 1; \ |