summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/test.py b/tools/test.py
index 7fddfc2ff..e4914ae50 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -74,13 +74,13 @@ def main(argv):
"tools/ts_library_builder/test.ts"
])
- test_cc = os.path.join(build_dir, "test_cc" + executable_suffix)
- check_exists(test_cc)
- run([test_cc])
+ libdeno_test = os.path.join(build_dir, "libdeno_test" + executable_suffix)
+ check_exists(libdeno_test)
+ run([libdeno_test])
- test_rs = os.path.join(build_dir, "test_rs" + executable_suffix)
- check_exists(test_rs)
- run([test_rs])
+ cli_test = os.path.join(build_dir, "cli_test" + executable_suffix)
+ check_exists(cli_test)
+ run([cli_test])
deno_core_test = os.path.join(build_dir,
"deno_core_test" + executable_suffix)