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 5f04481 commit e3540e8Copy full SHA for e3540e8
scripts/pylib/twister/twisterlib/testplan.py
@@ -707,7 +707,7 @@ def apply_filters(self, **kwargs):
707
if ts.depends_on:
708
dep_intersection = ts.depends_on.intersection(set(plat.supported))
709
if dep_intersection != set(ts.depends_on):
710
- instance.add_filter("No hardware support", Filters.PLATFORM)
+ instance.add_filter(f"No hardware support, lacking {set(ts.depends_on) - dep_intersection}.", Filters.PLATFORM)
711
712
if plat.flash < ts.min_flash:
713
instance.add_filter("Not enough FLASH", Filters.PLATFORM)
0 commit comments