summaryrefslogtreecommitdiff
path: root/tools/throughput_benchmark.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-11-08 10:38:20 -0800
committerGitHub <noreply@github.com>2018-11-08 10:38:20 -0800
commita18e51fd61203067f9b4e58705545aa0b5fce537 (patch)
treecd33495eaa4f0235323e8cf59c60d006d3291306 /tools/throughput_benchmark.py
parent1a876a70de5f8f498f8b1816e1d6220a669c339d (diff)
build: Use target/ instead of out/ (#1153)
Diffstat (limited to 'tools/throughput_benchmark.py')
-rwxr-xr-xtools/throughput_benchmark.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/throughput_benchmark.py b/tools/throughput_benchmark.py
index b9fdc8a35..457f50bae 100755
--- a/tools/throughput_benchmark.py
+++ b/tools/throughput_benchmark.py
@@ -48,7 +48,7 @@ if __name__ == '__main__':
deno_exe = sys.argv[1]
megs = int(sys.argv[2])
if not deno_exe or not megs:
- print "Usage ./tools/throughput_benchmark.py out/debug/deno 100"
+ print "Usage ./tools/throughput_benchmark.py target/debug/deno 100"
sys.exit(1)
secs = tcp(sys.argv[1], megs)
print secs, "seconds"