summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/deno_dir_test.py2
-rwxr-xr-xtools/http_benchmark.py2
-rwxr-xr-xtools/throughput_benchmark.py2
-rwxr-xr-xtools/unit_tests.py2
-rw-r--r--tools/util.py4
5 files changed, 6 insertions, 6 deletions
diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py
index 769af6dca..bb07b7544 100755
--- a/tools/deno_dir_test.py
+++ b/tools/deno_dir_test.py
@@ -42,7 +42,7 @@ def run_deno(deno_exe, deno_dir=None):
def main(argv):
if len(sys.argv) != 3:
- print "Usage ./tools/deno_dir_test.py out/debug/deno out/debug/.deno_dir"
+ print "Usage ./tools/deno_dir_test.py target/debug/deno target/debug/.deno_dir"
sys.exit(1)
deno_dir_test(argv[1], argv[2])
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py
index a2148ba45..f94144eac 100755
--- a/tools/http_benchmark.py
+++ b/tools/http_benchmark.py
@@ -62,6 +62,6 @@ def run(server_cmd):
if __name__ == '__main__':
if len(sys.argv) < 2:
- print "Usage ./tools/http_benchmark.py out/debug/deno"
+ print "Usage ./tools/http_benchmark.py target/debug/deno"
sys.exit(1)
deno_http_benchmark(sys.argv[1])
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"
diff --git a/tools/unit_tests.py b/tools/unit_tests.py
index f357aaccd..9682aec89 100755
--- a/tools/unit_tests.py
+++ b/tools/unit_tests.py
@@ -59,6 +59,6 @@ def unit_tests(deno_exe):
if __name__ == '__main__':
if len(sys.argv) < 2:
- print "Usage ./tools/unit_tests.py out/debug/deno"
+ print "Usage ./tools/unit_tests.py target/debug/deno"
sys.exit(1)
unit_tests(sys.argv[1])
diff --git a/tools/util.py b/tools/util.py
index dd80ab4bd..8c126bd83 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -182,12 +182,12 @@ def build_mode(default="debug"):
return default
-# E.G. "out/debug"
+# E.G. "target/debug"
def build_path():
if "DENO_BUILD_PATH" in os.environ:
return os.environ["DENO_BUILD_PATH"]
else:
- return os.path.join(root_path, "out", build_mode())
+ return os.path.join(root_path, "target", build_mode())
# Returns True if the expected matches the actual output, allowing variation