Skip to content

Commit

Permalink
sel4bench: remove HARDWARE and FAULT for hifive
Browse files Browse the repository at this point in the history
See #203 and seL4/sel4bench#20 for background.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jul 11, 2022
1 parent 4ae5806 commit d4768f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sel4bench/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
def adjust_build_settings(build: Build):
del build.settings['BAMBOO'] # not used in this build, avoid warning

if build.is_smp():
# see discussion on https://github.com/seL4/sel4bench/pull/20 for hifive exclusion
if build.is_smp() or build.get_platform().name == 'HIFIVE':
build.settings['HARDWARE'] = 'FALSE'
build.settings['FAULT'] = 'FALSE'

Expand Down

0 comments on commit d4768f4

Please sign in to comment.