Skip to content

Commit

Permalink
sel4test-hw: remove mcs+hyp+smp+clang for TX1
Browse files Browse the repository at this point in the history
See also seL4/seL4#928 -- TX1 has the same issue as TX2 and ODROID_C4

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jan 11, 2024
1 parent 25604cd commit 50beab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sel4test-hw/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def build_filter(build: Build) -> bool:
# No MCS + SMP for platforms with global timer for now (see seL4/seL4#513)
if plat.name == 'SABRE' and build.is_smp() and build.is_mcs():
return False
# SCHED_CONTEXT_0014 fails on TX2 and ODROID_C4: https://github.com/seL4/seL4/issues/928
if (plat.name == 'TX2' or plat.name == 'ODROID_C4') and \
# SCHED_CONTEXT_0014 fails on TX1, TX2 and ODROID_C4: https://github.com/seL4/seL4/issues/928
if plat.name in ['TX1', 'TX2', 'ODROID_C4'] and \
build.is_mcs() and build.is_smp() and build.is_hyp() and build.is_clang():
return False
# CACHEFLUSH0001 fails on ODROID_XU4: https://github.com/seL4/sel4test/issues/80
Expand Down

0 comments on commit 50beab0

Please sign in to comment.