From: zappo Date: Sat, 8 Aug 2009 21:52:40 +0000 (+0000) Subject: Determine the STYLE of test to run. If none passed in, use Make. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b76efc742abea79391b8dc5678df9e242d844d43;p=emacs.git Determine the STYLE of test to run. If none passed in, use Make. --- diff --git a/test/manual/cedet/cit-test.sh b/test/manual/cedet/cit-test.sh index 23aa73a537b..9bacb3b7e9a 100755 --- a/test/manual/cedet/cit-test.sh +++ b/test/manual/cedet/cit-test.sh @@ -2,5 +2,10 @@ EMACS=${EMACS:-emacs}; +STYLE=$1; +if [ -z $1 ]; then + STYLE=Make +fi + rm -r /tmp/CEDET_INTEG* -$EMACS -q -l ../common/cedet.el -l cit-load.el -f toggle-debug-on-error -f toggle-debug-on-quit -f cedet-integ-test +$EMACS -q -l ../common/cedet.el -l cit-load.el -f toggle-debug-on-error -f toggle-debug-on-quit -f cedet-integ-test-${STYLE}