Skip to content

Commit 4c78eee

Browse files
authoredJan 7, 2025
[test] Don't repeatedly warn about a compiler not being found (#5199)
1 parent 13a6479 commit 4c78eee

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎tests/utils/stl/test/tests.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ class TestType(Flag):
3030

3131

3232
class STLTest(Test):
33+
compilerNotFound = set()
34+
3335
def __init__(self, suite, pathInSuite, litConfig, testConfig, envlstEntry, envNum):
3436
self.envNum = envNum
3537
self.envlstEntry = envlstEntry
@@ -217,7 +219,9 @@ def _handleEnvlst(self, litConfig):
217219
_compilerPathCache[envCompiler] = cxx
218220

219221
if not cxx:
220-
litConfig.warning('Could not find: %r' % envCompiler)
222+
if envCompiler not in self.compilerNotFound:
223+
self.compilerNotFound.add(envCompiler)
224+
litConfig.warning('Could not find: %r' % envCompiler)
221225
return Result(SKIPPED, 'This test was skipped because the compiler, "' +
222226
envCompiler + '", could not be found')
223227

0 commit comments

Comments
 (0)