X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-target-contrib.sh;h=b6090724b5b1b105c94d10e62736baecb1939c1b;hb=a7699535aaba71765335f3be0a2103b2f07941af;hp=22fe7e59fc12805d68758d4d9687e9494eacb216;hpb=2b47574f810d541bf36f7efdf89650d8ca14d3ca;p=sbcl.git diff --git a/make-target-contrib.sh b/make-target-contrib.sh index 22fe7e5..b609072 100644 --- a/make-target-contrib.sh +++ b/make-target-contrib.sh @@ -18,7 +18,8 @@ echo //entering make-target-contrib.sh LANG=C LC_ALL=C -export LANG LC_ALL +CC=${CC:-gcc} +export CC LANG LC_ALL # Load our build configuration . output/build-config @@ -81,6 +82,24 @@ for i in $contribs_to_build; do fi | tee output/building-contrib.`basename $i` done +# Otherwise report expected failures: +HEADER_HAS_BEEN_PRINTED=false +for dir in contrib/*; do + f="$dir/test-passed" + if test -f "$f" && grep -i fail "$f" >/dev/null; then + if ! $HEADER_HAS_BEEN_PRINTED; then + cat <