summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-05-01 15:48:56 +0200
committerRyan Dahl <ry@tinyclouds.org>2019-05-01 09:48:56 -0400
commit8978870808db896d1aa0da5deb0d4472ccb46246 (patch)
treea97e65baa0baa533f7bc4cc428b35267c8cb3157 /tools/test.py
parent7237e9d34a61629d5bedce3b9cc46c8a1344d78a (diff)
Rename test targets (#2262)
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)