diff --git a/benchmark/Makefile b/benchmark/Makefile index b202443..f517042 100644 --- a/benchmark/Makefile +++ b/benchmark/Makefile @@ -32,6 +32,8 @@ server-crow : crow/main.cpp g++ -o $@ $(CXXFLAGS) crow/main.cpp # misc +bench-all: bench-crow bench + issue: $(BENCH) diff --git a/benchmark/flask/main.py b/benchmark/flask/main.py deleted file mode 100644 index f6707ff..0000000 --- a/benchmark/flask/main.py +++ /dev/null @@ -1,9 +0,0 @@ -from flask import Flask -app = Flask(__name__) - -import logging -logging.getLogger('werkzeug').disabled = True - -@app.route('/') -def hello_world(): - return 'Hello, World!'