diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-04-28 21:54:41 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-04-28 21:54:41 (GMT) |
commit | b64b643c54a2cee2c53a72901bd86d17fa81d216 (patch) | |
tree | d2b478e3a8f3f9f2ae990b2a23ab7c76ae96f7de /config | |
parent | c66d2cb606a8fde100dd5b3bc81ff6c01a3c4ca9 (diff) | |
download | hdf5-b64b643c54a2cee2c53a72901bd86d17fa81d216.zip hdf5-b64b643c54a2cee2c53a72901bd86d17fa81d216.tar.gz hdf5-b64b643c54a2cee2c53a72901bd86d17fa81d216.tar.bz2 |
[svn-r8430] 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 50f0de4..43723fb 100644 --- a/config/conclude.in +++ b/config/conclude.in @@ -42,7 +42,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 "============================"; \ @@ -111,7 +111,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; \ |