diff options
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-x | tools/http_benchmark.py | 4 |
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) |