Skip to content

Commit

Permalink
builds: exclude clang + hyp + smp for zynqmp
Browse files Browse the repository at this point in the history
Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Aug 11, 2024
1 parent dc8f197 commit b1139a3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sel4test-hw/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@ def build_filter(build: Build) -> bool:
return False

# HYP/SMP exclusions:
# IMX8MQ_EVK is failing multicore tests for SMP + HYP + clang
# IMX8MQ_EVK and ZYNQMPs are 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():
if plat.name in ['IMX8MQ_EVK', 'ZYNQMP', 'ZYNQMP106'] and \
build.is_hyp() and build.is_smp() and build.is_clang():
return False

if plat.arch == 'x86':
Expand Down

0 comments on commit b1139a3

Please sign in to comment.