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 db0f3a7 commit 6c6df64Copy full SHA for 6c6df64
scripts/pylib/twister/twisterlib/testplan.py
@@ -882,7 +882,10 @@ def apply_filters(self, **kwargs):
882
if itoolchain:
883
toolchain = itoolchain
884
elif plat.arch in ['posix', 'unit']:
885
- toolchain = 'host/gnu' if not self.env.toolchain else self.env.toolchain
+ if self.env.toolchain in ['host/llvm']:
886
+ toolchain = 'host/llvm'
887
+ else:
888
+ toolchain = 'host/gnu'
889
else:
890
toolchain = "zephyr" if not self.env.toolchain else self.env.toolchain
891
0 commit comments