diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-15 12:59:53 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-18 17:17:08 -0400 |
commit | 33438b83a2a2597c2b9918475dd5362faa5c1728 (patch) | |
tree | 31cdc09220f500f2dbc3f4fafc4788cb76cd764b | |
parent | b711a8d0474cd914c564b691b48cc55abf4480cf (diff) |
Re-order tests for sanity
-rwxr-xr-x | tools/test.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/test.py b/tools/test.py index a4633dec4..fa1948eab 100755 --- a/tools/test.py +++ b/tools/test.py @@ -65,17 +65,14 @@ def main(argv): deno_exe = os.path.join(build_dir, "deno" + executable_suffix) check_exists(deno_exe) - exec_path_test(deno_exe) - - # Internal tools testing + # Python/build tools testing + setup_test() + util_test() run([ "node", "./node_modules/.bin/ts-node", "--project", "tools/ts_library_builder/tsconfig.json", "tools/ts_library_builder/test.ts" ]) - setup_test() - util_test() - benchmark_test(build_dir, deno_exe) test_cc = os.path.join(build_dir, "test_cc" + executable_suffix) check_exists(test_cc) @@ -119,6 +116,9 @@ def main(argv): test_no_color(deno_exe) + benchmark_test(build_dir, deno_exe) + exec_path_test(deno_exe) + if __name__ == '__main__': sys.exit(main(sys.argv)) |