diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-15 19:08:03 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-20 16:53:39 -0400 |
commit | f7fd2389533f0ae387af30ea63755b67a6484e51 (patch) | |
tree | e70daea8675e86293f8675ff3eb3c00f9e0629bd /tools/test.py | |
parent | 8aa04086719d2089920714e00de45d3af99ef5f5 (diff) |
Enable http server for tests.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 5344e7b62..75886874e 100755 --- a/tools/test.py +++ b/tools/test.py @@ -6,6 +6,8 @@ import sys from check_output_test import check_output_test from util import executable_suffix, run, build_path from util_test import util_test +import subprocess +import http_server def check_exists(filename): @@ -24,6 +26,8 @@ def main(argv): print "Usage: tools/test.py [build_dir]" sys.exit(1) + http_server.spawn() + # Internal tools testing util_test() |