Skip to content

Commit

Permalink
ci: more bmc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekiwi committed Nov 20, 2023
1 parent 5883109 commit 9967e16
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,13 @@ jobs:
- name: Build
run: cargo build --verbose --examples --release
- name: bmc Quiz1
run: cargo run --release --example bmc -- inputs/Quiz1.btor
run: |
cargo run --release --example bmc -- inputs/Quiz1.btor > Quiz1.wit
btorsim inputs/Quiz1.btor Quiz1.wit
- name: bmc const array example
run: |
cargo run --release --example bmc -- inputs/const_array_example.btor > const_array_example.wit
btorsim inputs/const_array_example.btor const_array_example.wit
semver:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/Cargo.lock
/.idea/
/*.smt
/*.wit

0 comments on commit 9967e16

Please sign in to comment.