X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2FMakefile;h=1b986b4829c0334a8930638bdc8627d2069baa62;hb=87f71ca01b619b8d613407cb3fcbb91d12d932fe;hp=a7c1ea07f084db4adcb54c7175bdc64909e5864d;hpb=1aae30270442f31de384423a4360e256cc6e941f;p=mkws-moved-to-github.git diff --git a/test/Makefile b/test/Makefile index a7c1ea0..1b986b4 100644 --- a/test/Makefile +++ b/test/Makefile @@ -27,7 +27,7 @@ clean: rm -f images/*.png ${MAKE} -C./widgets $@ -distclean: clean clean-tmp clean-error +distclean: apache-stop clean clean-tmp clean-error rm -rf node_modules rm -f libexec @@ -42,13 +42,15 @@ clean-tmp: mkws-complete-syntax-check: ${MAKE} -C../src ../tools/htdocs/mkws-complete.min.js -check check-js: mkws-complete-syntax-check +check check-js: node-modules mkws-complete-syntax-check + ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec + +check-node-installation: @if [ ! -e node_modules ]; then \ echo "==> please run first: make node-modules"; \ echo ""; \ exit 1; \ fi - ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec test: check @@ -110,7 +112,7 @@ apache-stop: @-if [ -e ${APACHE_PID_FILE} ]; then \ kill `cat ${APACHE_PID_FILE}`; \ else \ - killall apache2 2> /dev/null; \ + killall ${APACHE_HTTPD} 2> /dev/null; \ fi @sleep 0.6 rm -f ${APACHE_PID_FILE}