summaryrefslogtreecommitdiff
path: root/tools/http_benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-xtools/http_benchmark.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py
index 03f9f4365..d46d8a33d 100755
--- a/tools/http_benchmark.py
+++ b/tools/http_benchmark.py
@@ -42,17 +42,6 @@ def deno_tcp(deno_exe):
return run(deno_cmd, port)
-def deno_tcp_current_thread(deno_exe):
- port = get_port()
- deno_cmd = [
- deno_exe, "run", "--current-thread", "--allow-net",
- "tools/deno_tcp.ts",
- server_addr(port)
- ]
- print "http_benchmark testing DENO tcp (single-thread)."
- return run(deno_cmd, port)
-
-
def deno_http(deno_exe):
port = get_port()
deno_cmd = [
@@ -154,7 +143,6 @@ def http_benchmark(build_dir):
return {
# "deno_tcp" was once called "deno"
"deno_tcp": deno_tcp(deno_exe),
- "deno_tcp_current_thread": deno_tcp_current_thread(deno_exe),
# "deno_http" was once called "deno_net_http"
"deno_http": deno_http(deno_exe),
"deno_proxy": deno_http_proxy(deno_exe, hyper_hello_exe),