X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=make-target-contrib.sh;h=b6090724b5b1b105c94d10e62736baecb1939c1b;hb=f69e89d31d95c15469110ba75ae1da8ac7cf3f32;hp=bcff011a1405c117db2e9e460b4d558fea9a3b19;hpb=66cbca5408d83014fada99572892416b5d93a71a;p=sbcl.git diff --git a/make-target-contrib.sh b/make-target-contrib.sh index bcff011..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 @@ -61,10 +62,10 @@ find output -name 'building-contrib.*' -print | xargs rm -f CL_SOURCE_REGISTRY='(:source-registry :ignore-inherited-configuration)' export CL_SOURCE_REGISTRY -if [ -z "$@" ]; then +if [ -z "$*" ]; then contribs_to_build=contrib/* else - for name in $@; do + for name in $*; do contribs_to_build="contrib/$name $contribs_to_build" done fi @@ -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 <