diff options
author | drebs <drebs@riseup.net> | 2017-10-31 16:32:45 -0200 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2017-11-02 09:36:31 -0200 |
commit | 31bdbc7268ff118080ecfb67f716fd86d3421032 (patch) | |
tree | f5229cd7a868c00a55d7440a88f604a5ec97596f /scripts/scalability/makefile | |
parent | a7f93cec7999de04614d7adaf91c4348a3313e2e (diff) |
[benchmarks] use only one user in scalability tests
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 #----------------# |