[svn-r593] Added couple banner lines around the "Testing ...." message and

also a trailing blank line to make it easier to identify the
output of each test program.
This commit is contained in:
Albert Cheng 1998-08-14 14:39:41 -05:00
parent 692a2f0859
commit a7e57b2779

View File

@ -24,8 +24,11 @@ tests: $(LIB) $(TESTS)
test _test: tests
@for test in $(TESTS) dummy; do \
if test $$test != dummy; then \
echo "============================"; \
echo "Testing $$test $(TEST_FLAGS)"; \
echo "============================"; \
$(RUNTEST) ./$$test $(TEST_FLAGS) || exit 1; \
echo ""; \
fi; \
done;