mirror of
https://github.com/servo/servo.git
synced 2025-09-11 23:48:21 +01:00
Update web-platform-tests to revision e2eb25aaa6dd3c512b172588f3400f9c25a410c3
This commit is contained in:
parent
3d4a416c6b
commit
8b66216ed2
484 changed files with 1945 additions and 1089 deletions
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
marionette_driver==2.7.0
|
||||
mozprofile==2.1.0
|
||||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
mozcrash == 1.0
|
||||
mozrunner==7.2.0
|
||||
mozrunner==7.3.0
|
||||
mozleak==0.2
|
||||
mozinstall==2.0.0
|
||||
mozdownload==1.25
|
||||
mozversion==1.5
|
||||
mozversion==2.1.0
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
selenium==3.141.0
|
||||
requests==2.21.0
|
||||
|
|
|
@ -1 +1 @@
|
|||
mozprocess == 0.26
|
||||
mozprocess==1.0.0
|
||||
|
|
|
@ -163,9 +163,12 @@ def err_string(results_dict, iterations):
|
|||
"""Create and return string with errors from test run."""
|
||||
rv = []
|
||||
total_results = sum(results_dict.values())
|
||||
for key, value in sorted(results_dict.items()):
|
||||
rv.append("%s%s" %
|
||||
(key, ": %s/%s" % (value, iterations) if value != iterations else ""))
|
||||
if total_results > iterations:
|
||||
rv.append("Duplicate subtest name")
|
||||
else:
|
||||
for key, value in sorted(results_dict.items()):
|
||||
rv.append("%s%s" %
|
||||
(key, ": %s/%s" % (value, iterations) if value != iterations else ""))
|
||||
if total_results < iterations:
|
||||
rv.append("MISSING: %s/%s" % (iterations - total_results, iterations))
|
||||
rv = ", ".join(rv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue