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 5862756 commit 1eb0b45Copy full SHA for 1eb0b45
llvm/utils/lit/lit/display.py
@@ -119,10 +119,7 @@ def print_result(self, test):
119
test_name = test.getFullName()
120
121
extra_info = ""
122
- if (
123
- test.result.max_allowed_attempts is not None
124
- and test.result.max_allowed_attempts > 1
125
- ) and test.result.attempts > 1:
+ if test.result.attempts > 1:
126
extra_info = f", {test.result.attempts} of {test.result.max_allowed_attempts} attempts"
127
128
print(
0 commit comments