diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-02-26 17:36:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-26 17:36:05 -0500 |
commit | b8a537d020f5e4495572daa4d8a59f51fa3b20d1 (patch) | |
tree | 468164b8dcc8ce0bcd64e75b63e4a3af0da36f15 /tools/test.py | |
parent | 5dfbbbb07a8f484dca27bbe0d7a3bafb0bdb91fd (diff) |
deno_core (#1827)
A new low-level crate with focus on speed.
This doesn't yet hook into the existing code base.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 5d08e59d1..5a8c67519 100755 --- a/tools/test.py +++ b/tools/test.py @@ -85,6 +85,11 @@ def main(argv): check_exists(test_rs) run([test_rs]) + deno_core_test = os.path.join(build_dir, + "deno_core_test" + executable_suffix) + check_exists(deno_core_test) + run([deno_core_test]) + unit_tests(deno_exe) prefetch_test(deno_exe) |