Skip to content

Commit

Permalink
Add makefile for model checking
Browse files Browse the repository at this point in the history
Usage 1) Verify islet using model checking

(in plat/fvp)

$ make verify

Usage 2) Remove generated output

(in plat/fvp)

$ make clean
  • Loading branch information
zpzigi754 committed Nov 7, 2023
1 parent ae3e6b8 commit a8731b0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions plat/fvp/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
KANI_FLAGS := \
--enable-unstable \
--ignore-global-asm \
--restrict-vtable

.PHONY: verify
verify:
cargo kani $(KANI_FLAGS)

.PHONY: clean
clean:
cargo clean

0 comments on commit a8731b0

Please sign in to comment.