X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-target-contrib.sh;h=af56892abc257eda009792c967ffc23b1b22ca62;hb=b6094d5640a59f36d2f727df08b271c422aa9e1c;hp=28945a96745a4f17fa247b1978cb842c556d58ee;hpb=40859b35c1bff1d7d8773bbcda7b25bca4e553e3;p=sbcl.git diff --git a/make-target-contrib.sh b/make-target-contrib.sh index 28945a9..af56892 100644 --- a/make-target-contrib.sh +++ b/make-target-contrib.sh @@ -26,7 +26,7 @@ find_gnumake SBCL_HOME=`pwd`/contrib export SBCL_HOME -SBCL="`pwd`/src/runtime/sbcl --noinform --core `pwd`/output/sbcl.core --userinit /dev/null --sysinit /dev/null" # --disable-debugger" +SBCL="`pwd`/src/runtime/sbcl --noinform --core `pwd`/output/sbcl.core --userinit /dev/null --sysinit /dev/null --disable-debugger" SBCL_BUILDING_CONTRIB=1 export SBCL SBCL_BUILDING_CONTRIB @@ -52,3 +52,19 @@ for i in contrib/*; do test -f $i/test-passed && rm $i/test-passed $GNUMAKE -C $i test && touch $i/test-passed done + +# Sometimes people used to see the "No tests failed." output from the last +# DEFTEST in contrib self-tests and think that's all that is. So... +HEADER_HAS_BEEN_PRINTED=false +for dir in contrib/* +do + if [ -d "$dir" -a -f "$dir/Makefile" -a ! -f "$dir/test-passed" ]; then + if $HEADER_HAS_BEEN_PRINTED; then + echo > /dev/null + else + echo "Failed contribs:" + HEADER_HAS_BEEN_PRINTED=true + fi + echo " `basename $dir`" + fi +done