mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
Re-order tests for sanity
This commit is contained in:
parent
b711a8d047
commit
33438b83a2
1 changed files with 6 additions and 6 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue