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 e115b1d commit 8d4cb7fCopy full SHA for 8d4cb7f
scripts/pylib/twister/twisterlib/testplan.py
@@ -873,7 +873,10 @@ def apply_filters(self, **kwargs):
873
if itoolchain:
874
toolchain = itoolchain
875
elif plat.arch in ['posix', 'unit']:
876
- toolchain = 'host/gnu' if not self.env.toolchain else self.env.toolchain
+ if self.env.toolchain in ['host/llvm']:
877
+ toolchain = 'host/llvm'
878
+ else:
879
+ toolchain = 'host/gnu'
880
else:
881
toolchain = "zephyr" if not self.env.toolchain else self.env.toolchain
882
0 commit comments