mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Upgrade wptrunner (tests/wpt/harness) to latest version
This commit is contained in:
parent
5478c7c24b
commit
759c52d7eb
28 changed files with 164 additions and 146 deletions
|
@ -57,7 +57,7 @@ class IncludeManifest(ManifestItem):
|
|||
try:
|
||||
skip_value = self.get("skip", {"test_type": test.item_type}).lower()
|
||||
assert skip_value in ("true", "false")
|
||||
return False if skip_value == "true" else True
|
||||
return skip_value != "true"
|
||||
except KeyError:
|
||||
if node.parent is not None:
|
||||
node = node.parent
|
||||
|
@ -107,6 +107,7 @@ class IncludeManifest(ManifestItem):
|
|||
if component not in node.child_map:
|
||||
new_node = IncludeManifest(DataNode(component))
|
||||
node.append(new_node)
|
||||
new_node.set("skip", node.get("skip", {}))
|
||||
|
||||
node = node.child_map[component]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue