1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/tools/test.py

56 lines
1.3 KiB
Python
Raw Normal View History

2018-07-21 19:08:24 -04:00
#!/usr/bin/env python
# Runs the full test suite.
# Usage: ./tools/test.py out/Debug
import os
import sys
from check_output_test import check_output_test
2018-08-09 17:48:17 -04:00
from util import executable_suffix, run, build_path
from util_test import util_test
2018-08-15 19:08:03 -04:00
import subprocess
import http_server
2018-07-21 19:08:24 -04:00
def check_exists(filename):
if not os.path.exists(filename):
print "Required target doesn't exist:", filename
2018-08-09 17:48:17 -04:00
print "Run ./tools/build.py"
2018-07-21 19:08:24 -04:00
sys.exit(1)
def main(argv):
2018-08-09 17:48:17 -04:00
if len(argv) == 2:
build_dir = sys.argv[1]
elif len(argv) == 1:
build_dir = build_path()
else:
print "Usage: tools/test.py [build_dir]"
2018-07-21 19:08:24 -04:00
sys.exit(1)
2018-08-15 19:08:03 -04:00
http_server.spawn()
# Internal tools testing
util_test()
2018-07-21 19:08:24 -04:00
test_cc = os.path.join(build_dir, "test_cc" + executable_suffix)
check_exists(test_cc)
run([test_cc])
test_rs = os.path.join(build_dir, "test_rs" + executable_suffix)
check_exists(test_rs)
run([test_rs])
2018-07-21 19:08:24 -04:00
deno_exe = os.path.join(build_dir, "deno" + executable_suffix)
2018-08-09 17:48:17 -04:00
check_exists(deno_exe)
run([deno_exe, "js/unit_tests.ts", "--allow-write"])
2018-08-09 17:48:17 -04:00
2018-07-21 19:08:24 -04:00
check_exists(deno_exe)
check_output_test(deno_exe)
deno_ns_exe = os.path.join(build_dir, "deno_ns" + executable_suffix)
check_exists(deno_ns_exe)
check_output_test(deno_ns_exe)
if __name__ == '__main__':
sys.exit(main(sys.argv))