enable to run the tests on a different port.
authorWolfram Schneider <wosch@indexdata.dk>
Wed, 2 Jul 2014 09:14:37 +0000 (11:14 +0200)
committerWolfram Schneider <wosch@indexdata.dk>
Wed, 2 Jul 2014 09:14:37 +0000 (11:14 +0200)
APACHE_PORT=5000 make check

thats helpfull if the port is already blocked by some other users.

test/Makefile
test/bin/apache-template-update

index 57b5c46..e808d55 100644 (file)
@@ -3,8 +3,10 @@
 # For running on Mike's local install of node.js
 MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin
 
+APACHE_PORT:= $(shell echo $${APACHE_PORT-4040})
+
 #PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html       
-PHANTOMJS_URL=http://localhost:4040/jasmine-local-popup.html
+PHANTOMJS_URL=http://localhost:${APACHE_PORT}/jasmine-local-popup.html
 PHANTOMJS_TIMEOUT=16
 
 NPM_INSTALL_FLAGS=-q
index 4f37a41..bf14cbd 100755 (executable)
@@ -12,7 +12,7 @@ export APACHE_RUN_GROUP=$(groups | awk '{ print $1 }')
 export APACHE_LOG_DIR=$APACHE_SERVER_ROOT/logs
 export APACHE_PID_FILE=$APACHE_LOG_DIR/mkws-jasmine.pid
 export APACHE_LOCK_FILE=$APACHE_LOG_DIR/accept.lock
-export APACHE_PORT=4040
+: ${APACHE_PORT=4040}; export APACHE_PORT
 
 export MKWS_ROOT=$(pwd)/..