Auto merge of #20055 - servo:fix-wpt-executor, r=jdm

Fix an error in executorservo.py

```
TypeError: make_hosts_file() takes exactly 2 arguments (0 given)
```

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20055)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2018-02-15 11:35:22 -05:00 committed by GitHub
commit 304cb1e034
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 18 additions and 2 deletions

View file

@ -0,0 +1,2 @@
[intrinsic-size-float-and-line.html]
expected: FAIL

View file

@ -0,0 +1,2 @@
[content-height-005.html]
expected: FAIL

View file

@ -1,3 +1,3 @@
[attachment-local-clipping-color-4.html]
type: reftest
expected: TIMEOUT
expected: FAIL

View file

@ -0,0 +1,2 @@
[font-variant-05.xht]
expected: FAIL

View file

@ -0,0 +1,2 @@
[font-variant-06.xht]
expected: FAIL

View file

@ -0,0 +1,2 @@
[viewport-script-dynamic.html]
expected: FAIL

View file

@ -0,0 +1,2 @@
[img-html-correctly-labeled.sub.html]
expected: FAIL

View file

@ -0,0 +1,4 @@
[010.html]
[Salvagability of document.opened document]
expected: FAIL

View file

@ -185,7 +185,7 @@ class ServoRefTestExecutor(ProcessTestExecutor):
self.screenshot_cache = screenshot_cache
self.implementation = RefTestImplementation(self)
self.tempdir = tempfile.mkdtemp()
self.hosts_path = make_hosts_file()
self.hosts_path = write_hosts_file(server_config)
def teardown(self):
try: