Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable more zynqmp 32 tests #363

Merged
merged 2 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions seL4-platforms/platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ platforms:
arch: arm
modes: [32, 64]
smp: [64]
aarch_hyp: [32, 64]
aarch_hyp: [64]
platform: zynqmp
req: [zcu102_2]
march: armv8a
Expand All @@ -250,7 +250,7 @@ platforms:
arch: arm
modes: [32, 64]
smp: [64]
aarch_hyp: [32, 64]
aarch_hyp: [64]
platform: zynqmp
req: [zcu106]
march: armv8a
Expand Down
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