Lines Matching defs:print
25 print(output.encode(encoding, errors='replace').decode(encoding))
48 print('>>> Too many failures, exiting...')
82 print()
87 print("--- stderr ---")
88 print(result.output.stderr.strip())
90 print("--- stdout ---")
91 print(result.output.stdout.strip())
92 print("Command: %s" % result.cmd.to_string())
94 print("exit code: %s" % result.output.exit_code_string)
95 print("--- CRASHED ---")
98 print("--- TIMEOUT ---")
100 print("===")
101 print("=== All tests succeeded")
102 print("===")
104 print()
105 print("===")
106 print("=== %d tests failed" % len(self._failed))
108 print("=== %d tests were flaky" % flaky)
110 print("=== %d tests CRASHED" % crashed)
111 print("===")
121 self.print('PASS', test)
123 self.print("CRASH", test)
125 self.print("TIMEOUT", test)
128 self.print("UNEXPECTED PASS", test)
130 self.print("FAIL", test)
132 def print(self, prefix, test):
133 print('%s: %ss' % (prefix, test))
154 print(text.encode(encoding, errors='replace').decode(encoding))
291 print()
310 print(status, end='')
338 print(self._templates[format] % string)
346 print("\033[1K\r", end='')
358 print(string)
361 print(("\r" + (" " * last_length) + "\r"), end='')