Skip to content

Commit

Permalink
Adding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevendeo committed Oct 2, 2023
1 parent 63b9e52 commit b6af21c
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/smtlib/testfile-exit.dolmen.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(set-logic ALL)
(check-sat)
(exit)
(check-sat)
4 changes: 4 additions & 0 deletions tests/smtlib/testfile-exit.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(set-logic ALL)
(check-sat)
(exit)
(check-sat)
8 changes: 8 additions & 0 deletions tests/smtlib/testfile-reset.dolmen.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
(set-logic ALL)

(declare-const b Bool)

(assert (and b (not b)))
(check-sat)
(reset)
(check-sat)
8 changes: 8 additions & 0 deletions tests/smtlib/testfile-reset.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
(set-logic ALL)

(declare-const b Bool)

(assert (and b (not b)))
(check-sat)
(reset)
(check-sat)

0 comments on commit b6af21c

Please sign in to comment.