Enable http server for tests.

This commit is contained in:
Ryan Dahl 2018-08-15 19:08:03 -04:00
parent 8aa0408671
commit f7fd238953
2 changed files with 35 additions and 0 deletions

View file

@ -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()