diff options
Diffstat (limited to 'tools/test.py')
-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)) |