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