summaryrefslogtreecommitdiff
path: root/tools/test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-15 19:08:03 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-20 16:53:39 -0400
commitf7fd2389533f0ae387af30ea63755b67a6484e51 (patch)
treee70daea8675e86293f8675ff3eb3c00f9e0629bd /tools/test.py
parent8aa04086719d2089920714e00de45d3af99ef5f5 (diff)
Enable http server for tests.
Diffstat (limited to 'tools/test.py')
-rwxr-xr-xtools/test.py4
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()