Skip to content

Commit

Permalink
Re-order tests for sanity
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Mar 18, 2019
1 parent b711a8d commit 33438b8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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))

0 comments on commit 33438b8

Please sign in to comment.