We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a34911 commit 5ae0439Copy full SHA for 5ae0439
scripts/test_translator.py
@@ -535,7 +535,10 @@ def run(self) -> List[TestOutcome]:
535
sys.stdout.write('\n')
536
sys.stdout.write(stdout)
537
else:
538
- sys.stdout.write("\n".join(line for line in stdout.split("\n") if "... ok" in line or "... FAILED" in line))
+ for line in stdout.split("\n"):
539
+ if "... ok" in line:
540
+ self.print_status(Colors.OKGREEN, "OK", "{}".format(line))
541
+ sys.stdout.write('\n')
542
543
# Don't distinguish between expected and unexpected failures.
544
# `#[should_panic]` is used for that instead of `// xfail` now.
0 commit comments