Skip to content

Commit

Permalink
sel4test-hw: disable zynqmp 32 mcs
Browse files Browse the repository at this point in the history
32-bit zynqmp builds stop with assertion failure at boot on zcu102.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Aug 14, 2024
1 parent eb58f3c commit ab244b7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sel4test-hw/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ def build_filter(build: Build) -> bool:
build.is_hyp() and build.is_smp() and build.is_clang():
return False

# zynqmp 32 does not work with MCS
if plat.name == 'ZYNQMP' and build.get_mode() == 32 and build.is_mcs():
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 ab244b7

Please sign in to comment.