Skip to content

Commit 47075dc

Browse files
committed
[abi-testsuite] remove use of lit_config.quiet
This config property was removed in llvm/llvm-project#167192 and now causes failures when trying to run the test suite. lit_config.note will now automatically check whether it should emit the diagnostic or not.
1 parent b00c117 commit 47075dc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

ABI-Testsuite/test/lit.site.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,8 @@ def determinePlatform():
173173
# Determine which toolset to use
174174
tools = determinePlatform()
175175
generateTests()
176-
if not lit_config.quiet:
177-
lit_config.note("using toolset:")
178-
for key, value in tools.items():
179-
lit_config.note("\t%s => %s" % (key, value))
176+
lit_config.note("using toolset:")
177+
for key, value in tools.items():
178+
lit_config.note("\t%s => %s" % (key, value))
180179
for key, value in tools.items():
181180
config.substitutions.append((key, value))

0 commit comments

Comments
 (0)