diff options
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 6e5cb548b..c06c9a28b 100755 --- a/tools/test.py +++ b/tools/test.py @@ -4,6 +4,7 @@ import os import sys from check_output_test import check_output_test +import install_test from util import executable_suffix, run, build_path from unit_tests import unit_tests from util_test import util_test @@ -51,6 +52,8 @@ def main(argv): check_exists(deno_ns_exe) check_output_test(deno_ns_exe) + install_test.main() + if __name__ == '__main__': sys.exit(main(sys.argv)) |