X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make.sh;h=4de59151a637538631b860d9ca5282f9694bb430;hb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;hp=284d24007f52382ccceb224215f645a167ee2345;hpb=22c1de0a40df83bb5628974010a879cb2c17ff53;p=sbcl.git diff --git a/make.sh b/make.sh index 284d240..4de5915 100755 --- 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)."