MCPcopy Index your code
hub / github.com/nodejs/node / HasRun

Method HasRun

tools/test.py:299–315  ·  view source on GitHub ↗
(self, output)

Source from the content-addressed store, hash-verified

297 pass
298
299 def HasRun(self, output):
300 total = self.succeeded + len(self.failed)
301 if (total > 1) and (total % 50 == 1):
302 sys.stdout.write('\n')
303 if output.UnexpectedOutput():
304 if output.HasCrashed():
305 sys.stdout.write('C')
306 sys.stdout.flush()
307 elif output.HasTimedOut():
308 sys.stdout.write('T')
309 sys.stdout.flush()
310 else:
311 sys.stdout.write('F')
312 sys.stdout.flush()
313 else:
314 sys.stdout.write('.')
315 sys.stdout.flush()
316
317class ActionsAnnotationProgressIndicator(DotsProgressIndicator):
318 def AboutToRun(self, case):

Callers

nothing calls this directly

Calls 5

UnexpectedOutputMethod · 0.80
flushMethod · 0.65
writeMethod · 0.45
HasCrashedMethod · 0.45
HasTimedOutMethod · 0.45

Tested by

no test coverage detected