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