summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-23 14:13:12 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-07-24 12:29:54 -0400
commit0213053856148379992212b189390f222c6cb460 (patch)
treef62e02bf4d8d91cddcc45169ce5afb0c2d4bf5de /tools
parentb79ce93010d0cc80a9345f646e562326de4588e5 (diff)
Remove handlers crate target.
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/test.py b/tools/test.py
index e62efd0f6..3edfa4e01 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -24,9 +24,9 @@ def main(argv):
check_exists(test_cc)
run([test_cc])
- handlers_test = os.path.join(build_dir, "handlers_test" + executable_suffix)
- check_exists(handlers_test)
- run([handlers_test])
+ test_rs = os.path.join(build_dir, "test_rs" + executable_suffix)
+ check_exists(test_rs)
+ run([test_rs])
deno_exe = os.path.join(build_dir, "deno" + executable_suffix)
check_exists(deno_exe)