summaryrefslogtreecommitdiff
path: root/tools/http_benchmark.py
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-08-26 13:48:40 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-08-26 07:48:40 -0400
commit017f88ee99b0fe40221e6af92e0b6a976fbaf2ad (patch)
treeca7b018715aca4bb7b8a71d48a2a915e63ae5b74 /tools/http_benchmark.py
parent2235dd795d3cc6c24ff1bdd1bbdcd110b4b0bdfc (diff)
fix: shared queue requires aligned buffer (#2816)
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-xtools/http_benchmark.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py
index e3674d095..2394ad160 100755
--- a/tools/http_benchmark.py
+++ b/tools/http_benchmark.py
@@ -28,7 +28,7 @@ def get_addr(port=None):
def deno_tcp(deno_exe):
addr = get_addr()
deno_cmd = [deno_exe, "run", "--allow-net", "tools/deno_tcp.ts", addr]
- print "http_benchmark testing DENO."
+ print "http_benchmark testing DENO tcp."
return run(deno_cmd, addr)
@@ -38,7 +38,7 @@ def deno_tcp_current_thread(deno_exe):
deno_exe, "run", "--current-thread", "--allow-net",
"tools/deno_tcp.ts", addr
]
- print "http_benchmark testing DENO."
+ print "http_benchmark testing DENO tcp (single-thread)."
return run(deno_cmd, addr)