mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Create filtered-wpt-errorsummary.log even if it would be empty
This commit is contained in:
parent
4cb0307d27
commit
1f018b09c8
1 changed files with 3 additions and 3 deletions
|
@ -574,9 +574,6 @@ class MachCommands(CommandBase):
|
||||||
json.dump(intermittent, intermittents_file, indent=4)
|
json.dump(intermittent, intermittents_file, indent=4)
|
||||||
print("\n", end='', file=intermittents_file)
|
print("\n", end='', file=intermittents_file)
|
||||||
|
|
||||||
if len(actual_failures) == 0:
|
|
||||||
return 0
|
|
||||||
|
|
||||||
output = open(log_filteredsummary, "w") if log_filteredsummary else sys.stdout
|
output = open(log_filteredsummary, "w") if log_filteredsummary else sys.stdout
|
||||||
for failure in actual_failures:
|
for failure in actual_failures:
|
||||||
json.dump(failure, output, indent=4)
|
json.dump(failure, output, indent=4)
|
||||||
|
@ -584,6 +581,9 @@ class MachCommands(CommandBase):
|
||||||
|
|
||||||
if output is not sys.stdout:
|
if output is not sys.stdout:
|
||||||
output.close()
|
output.close()
|
||||||
|
|
||||||
|
if len(actual_failures) == 0:
|
||||||
|
return 0
|
||||||
return 1
|
return 1
|
||||||
|
|
||||||
@Command('test-android-startup',
|
@Command('test-android-startup',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue