X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=build%2Fcheck-customs;h=5656f242db222779120a2f6f447ad3a5aac9b998;hb=ff36b07f44efa12a78809ee05bd6d0c25fc60495;hp=23b37cf5d3c07a28165f36041517c8b4d5fd0b1e;hpb=366273175877dd45a4556634e4377a5a0b989096;p=libucw.git diff --git a/build/check-customs b/build/check-customs index 23b37cf5..5656f242 100755 --- a/build/check-customs +++ b/build/check-customs @@ -9,57 +9,39 @@ TEST=0 function try { TEST=$(($TEST+1)) - LOG=test$TEST.log - echo "### Test $TEST: $@ ###" | tee $LOG - - CUST=$1 - shift - SUBST= - APP="!!### Added by check-customs:" - while [ -n "$1" ] ; do - X=$1 - Y=${X#!} - if [ "$X" != "$Y" ] ; then - SUBST="${S}/^$Y/s/^/# /;" - else - APP="$APP!$X" + TDIR=tests/$TEST + mkdir $TDIR + echo "### Test $TEST: $@ ###" | tee $TDIR/log + + ( + cd $TDIR + if ! ../../configure $@ CC=gcc-3.0 >>log 2>&1 ; then + echo " CANNOT CONFIGURE" + exit 1 fi - shift - done - rm -rf custom - cp -a $CUST custom - sed "$SUBST;p;d" <$CUST/config.mk >custom/config.mk - echo $APP | tr ! '\n' >>custom/config.mk - - make clean >>$LOG 2>&1 - rm run/cf/* - if ! make >>$LOG 2>&1 ; then - echo " FAILED" - exit 1 - fi - echo " PASSED" + if ! make >>log 2>&1 ; then + echo " FAILED" + exit 1 + fi + echo " PASSED" + ) } -if [ -e custom -a ! -e custom.old ] ; then - mv custom custom.old -fi - -rm -f test*.log +rm -rf tests +mkdir tests if [ -n "$1" ] ; then try "$@" else try free # the free version - try bare !CONFIG_INDEXER !CONFIG_SEARCH # absolutely stripped version + try bare -CONFIG_INDEXER -CONFIG_SEARCH # absolutely stripped version try bare # the bare version try debug/matcher-test # bare + custom stats and matchers - try centrum !CONFIG_GATHERER !CONFIG_GATHERD !CONFIG_SHEPHERD !CONFIG_REAPD !CONFIG_INDEXER !CONFIG_MUX !CONFIG_WATSON # search servers - try centrum !CONFIG_GATHERER !CONFIG_GATHERD !CONFIG_SHEPHERD !CONFIG_REAPD !CONFIG_MUX !CONFIG_WATSON # indexing server - try centrum !CONFIG_GATHERD !CONFIG_SHEPHERD !CONFIG_INDEXER !CONFIG_SEARCH !CONFIG_MUX !CONFIG_WATSON # reapd server - try centrum # full Centrum config - try debug/custom # debugging configuration -fi - -rm -rf custom -if [ -e custom.old ] ; then - mv custom.old custom + try centrum/cz ROLE=search # various Centrum.cz configurations + try centrum/cz ROLE=indexer + try centrum/cz ROLE=gather + try centrum/cz ROLE=reap+watson + try centrum/cz ROLE=all + try centrum/pl + try debug CONFIG_SHARED # debugging configuration with shared libs + try debug # debugging configuration fi