]> git.eshelyaron.com Git - emacs.git/commitdiff
Determine the STYLE of test to run. If none passed in, use Make.
authorzappo <zappo@users.sourceforge.net>
Sat, 8 Aug 2009 21:52:40 +0000 (21:52 +0000)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:55:35 +0000 (17:55 +0200)
test/manual/cedet/cit-test.sh

index 23aa73a537b7cf7736f7b7152590c308b976ab06..9bacb3b7e9a76ee9e7f24db54062e3251b9a03cc 100755 (executable)
@@ -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}