Skip to content

Commit

Permalink
sel4test: exclude broken hyp+mc+clang imx8mq tests
Browse files Browse the repository at this point in the history
Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jun 1, 2023
1 parent cd87354 commit c1d3bc4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sel4test-hw/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ def build_filter(build: Build) -> bool:
if plat.name == 'IMX8MM_EVK' and build.is_mcs() and build.is_smp():
return False

# HYP/SMP exclusions:
# IMX8MQ_EVK is failing multicore tests for SMP + HYP + clang
# see also https://github.com/seL4/sel4test/issues/44
if plat.name == 'IMX8MQ_EVK' and build.is_hyp() and build.is_smp() and build.is_clang():
return False

if plat.arch == 'x86':
# Bamboo config says no VTX for SMP or verification
if build.is_hyp() and (build.is_smp() or build.is_verification()):
Expand Down

0 comments on commit c1d3bc4

Please sign in to comment.