mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
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:
commit
304cb1e034
9 changed files with 18 additions and 2 deletions
|
@ -0,0 +1,2 @@
|
|||
[intrinsic-size-float-and-line.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[content-height-005.html]
|
||||
expected: FAIL
|
|
@ -1,3 +1,3 @@
|
|||
[attachment-local-clipping-color-4.html]
|
||||
type: reftest
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
|
2
tests/wpt/metadata/css/css-fonts/font-variant-05.xht.ini
Normal file
2
tests/wpt/metadata/css/css-fonts/font-variant-05.xht.ini
Normal file
|
@ -0,0 +1,2 @@
|
|||
[font-variant-05.xht]
|
||||
expected: FAIL
|
2
tests/wpt/metadata/css/css-fonts/font-variant-06.xht.ini
Normal file
2
tests/wpt/metadata/css/css-fonts/font-variant-06.xht.ini
Normal file
|
@ -0,0 +1,2 @@
|
|||
[font-variant-06.xht]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[viewport-script-dynamic.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[img-html-correctly-labeled.sub.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,4 @@
|
|||
[010.html]
|
||||
[Salvagability of document.opened document]
|
||||
expected: FAIL
|
||||
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue