diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-23 14:13:12 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-24 12:29:54 -0400 |
| commit | 0213053856148379992212b189390f222c6cb460 (patch) | |
| tree | f62e02bf4d8d91cddcc45169ce5afb0c2d4bf5de /tools | |
| parent | b79ce93010d0cc80a9345f646e562326de4588e5 (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-x | tools/test.py | 6 |
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) |
