[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:
This commit is contained in:
Albert Cheng 2004-04-28 16:54:41 -05:00
parent c66d2cb606
commit b64b643c54

View File

@ -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; \