Backed out changeset 200da85932e9 (bug 1230862) for valgrind perma failures

This commit is contained in:
Carsten "Tomcat" Book
2016-02-10 11:04:50 +01:00
parent 0bf09a19e9
commit 5ba717bd52
37 changed files with 988 additions and 49 deletions

View File

@@ -13,7 +13,7 @@ from mach.decorators import (
CommandProvider,
)
from wptserve.server import WebTestHttpd
import mozhttpd
from mozbuild.base import MachCommandBase
@@ -90,7 +90,7 @@ class Documentation(MachCommandBase):
if len(addr) != 2:
return die('invalid address: %s' % http)
httpd = WebTestHttpd(host=addr[0], port=addr[1], doc_root=outdir)
httpd = mozhttpd.MozHttpd(host=addr[0], port=addr[1], docroot=outdir)
print('listening on %s:%d' % addr)
httpd.start(block=True)