0.8.5.29:
[sbcl.git] / make.sh
diff --git a/make.sh b/make.sh
index 284d240..4de5915 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -104,10 +104,14 @@ sh make-target-2.sh || exit 1
 sh make-target-contrib.sh || exit 1
 
 # Sometimes people used to see the "No tests failed." output from the last
-# DEFTEST in contrib self-tests and thing that's all that is. So...
+# DEFTEST in contrib self-tests and think that's all that is. So...
+NCONTRIBS=`find contrib -name Makefile -print | wc -l`
+NPASSED=`find contrib -name test-passed -print | wc -l`
+
 echo
-echo The build seems to have finished successfully. If you would like
-echo run more extensive tests on the new SBCL, you can try 
+echo "The build seems to have finished successfully, including $NPASSED"
+echo "(out of $NCONTRIBS) contributed modules.  If you would like to run" 
+echo "more extensive tests on the new SBCL, you can try"
 echo "  cd tests && sh ./run-tests.sh"
 echo "(but expect some failures on non-x86 platforms)."