diff options
Diffstat (limited to 'scripts/scalability/makefile')
-rw-r--r-- | scripts/scalability/makefile | 40 |
1 files changed, 10 insertions, 30 deletions
diff --git a/scripts/scalability/makefile b/scripts/scalability/makefile index 0067c650..05ce1461 100644 --- a/scripts/scalability/makefile +++ b/scripts/scalability/makefile @@ -1,40 +1,20 @@ -# Test Controller for Server Scalability Tests -# ============================================ +# Test Controller Makefile +# ======================== # # This makefile knows how to install server and client components of the Test # Controller, as well as to trigger a run of the benchmarks. # -# Test Controller server -# ---------------------- -# -# In the server, run the following to have an instance of the Test Controller -# server running: -# -# make install-server -# make start-server -# -# And, if you want to see the logs, use: -# -# make log -# -# Alternativelly, use `make start-server-nodaemon` to avoid detaching from the -# terminal. -# -# Test Controller client -# ---------------------- -# -# Make sure an instance of the Test Controller Server is reachable at $(URI), -# and run: -# -# make install-client -# make run-test +# See the file README.rst for more information on how to use this makefile. + + +URI ?= https://giraffe.cdev.bitmask.net:7001 +PIDFILE = /tmp/test_controller.pid +LOGFILE = /tmp/test_controller.log +TACFILE = ./test_controller/server/server.tac -URI = https://giraffe.cdev.bitmask.net:7001 -PIDFILE = /tmp/test_controller.pid -LOGFILE = /tmp/test_controller.log -TACFILE = ./test_controller/server/server.tac +all: test #----------------# |