summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-14 19:17:52 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-03-15 10:58:18 -0400
commit1811318097b57c136913bd95bb9e16d820cc1a1a (patch)
tree1459444a37d4ea961d1b1f1da2cd0044ed2c5ac9 /tools/test.py
parent76c73ec61ec4271581795a2f0e3ae60072676dae (diff)
core: Behavior shouldn't be generic
We always pass around Box<[u8]>, and adding this generic is an unnecessary complication. Add deno_core_http_bench_test to test.py sharedQueue works on deno_core_http_bench
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py
index 5a8c67519..a4633dec4 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -90,6 +90,11 @@ def main(argv):
check_exists(deno_core_test)
run([deno_core_test])
+ deno_core_http_bench_test = os.path.join(
+ build_dir, "deno_core_http_bench_test" + executable_suffix)
+ check_exists(deno_core_http_bench_test)
+ run([deno_core_http_bench_test])
+
unit_tests(deno_exe)
prefetch_test(deno_exe)