Skip to content

Commit

Permalink
Merge pull request tock#4058 from tock/miri-capsules
Browse files Browse the repository at this point in the history
makefile: run miri on all capsules
  • Loading branch information
ppannuto authored Jul 3, 2024
2 parents 91297df + e8d10a4 commit 82eec01
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,9 @@ ci-job-miri:
@#cd libraries/tock-register-interface && NOWARNINGS=true cargo miri test
@cd kernel && NOWARNINGS=true cargo miri test
@for a in $$(tools/list_archs.sh); do cd arch/$$a && NOWARNINGS=true cargo miri test && cd ../..; done
@cd capsules && NOWARNINGS=true cargo miri test
@cd capsules/core && NOWARNINGS=true cargo miri test
@cd capsules/extra && NOWARNINGS=true cargo miri test
@cd capsules/system && NOWARNINGS=true cargo miri test
@for c in $$(tools/list_chips.sh); do cd chips/$$c && NOWARNINGS=true cargo miri test && cd ../..; done


Expand Down

0 comments on commit 82eec01

Please sign in to comment.