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 48429a0 commit dedae64Copy full SHA for dedae64
scripts/pylib/twister/twisterlib/testplan.py
@@ -828,7 +828,10 @@ def apply_filters(self, **kwargs):
828
if itoolchain:
829
toolchain = itoolchain
830
elif plat.arch in ['posix', 'unit']:
831
- toolchain = 'host/gnu' if not self.env.toolchain else self.env.toolchain
+ if self.env.toolchain in ['host/llvm']:
832
+ toolchain = 'host/llvm'
833
+ else:
834
+ toolchain = 'host/gnu'
835
else:
836
toolchain = "zephyr" if not self.env.toolchain else self.env.toolchain
837
0 commit comments