We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c838d7 commit bd5fd3eCopy full SHA for bd5fd3e
1 file changed
util/filter_test262_log.py
@@ -97,6 +97,17 @@ def main():
97
if not kn.has_key('used'):
98
print('WARNING: unused rule: ' + json.dumps(kn))
99
100
+ # Used by testclient
101
+
102
+ if len(unknown_errors) > 0 or len(other_errors) > 0:
103
+ print('TEST262 FAILED')
104
+ elif len(known_errors) > 0 or len(diagnosed_errors) > 0:
105
+ # Known and diagnosed errors don't indicate test failure
106
+ # as far as Github status is concerned.
107
+ print('TEST262 SUCCESS')
108
+ else:
109
110
111
# To fix count
112
113
print('')
0 commit comments