finishing touches: teminate the dots with a newline

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@48462 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Makefile.parallel b/test/Makefile.parallel
index 710fb4c..adb3cf3 100644
--- a/test/Makefile.parallel
+++ b/test/Makefile.parallel
@@ -11,9 +11,11 @@
 ifdef VERBOSE
 PROGRESS = echo $<
 REPORTFAIL = cat $@
+DONE = true
 else
 PROGRESS = printf '.'
 REPORTFAIL = (echo; echo '----' $< 'failed ----')
+DONE = echo
 endif
 
 TESTS = $(addprefix Output/, $(addsuffix .testresults, $(shell find $(TESTDIRS) \( -name '*.c' -or -name '*.cpp' -or -name '*.m' \))))
@@ -26,6 +28,7 @@
 	@ rm -f $(TESTS)
 	@ echo '--- Running clang tests ---'
 	@ $(MAKE) -f Makefile.parallel $(TESTS)
+	@ $(DONE)
 
 report: $(TESTS)
 	@ cat $^