diff options
author | andy finch <andyfinch7@gmail.com> | 2019-05-08 19:20:30 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-08 19:20:30 -0400 |
commit | 2edee3367dc9003b721cf87ca57e820c7acf7b25 (patch) | |
tree | 4bc91161188344d61b7e20107701c7e2af6b4ae1 /tools/test.py | |
parent | ac8c6fec5bb2be97c8dbdb2286d2688575a593f2 (diff) |
First pass at permissions whitelist (#2129)
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 2a59a0c87..0b913ea5b 100755 --- a/tools/test.py +++ b/tools/test.py @@ -105,7 +105,9 @@ def main(argv): if os.name != 'nt': from is_tty_test import is_tty_test from permission_prompt_test import permission_prompt_test + from complex_permissions_test import complex_permissions_test permission_prompt_test(deno_exe) + complex_permissions_test(deno_exe) is_tty_test(deno_exe) repl_tests(deno_exe) |