Skip to content

Commit

Permalink
Add failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hra687261 committed Jul 4, 2023
1 parent c6e9d83 commit f330337
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/dolmen/bitv/errors/testfile-bitv046.expected
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

unsat
10 changes: 10 additions & 0 deletions tests/dolmen/bitv/errors/testfile-bitv046.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(set-logic BV)
(assert
(distinct
(exists
((x (_ BitVec 2)))
(= (_ bv0 2) (bvashr x (_ bv0 2))))
(exists
((y (_ BitVec 2)))
(= (_ bv0 2) (bvand y (_ bv0 2))))))
(check-sat)
2 changes: 2 additions & 0 deletions tests/dolmen/bitv/errors/testfile-bitv047.expected
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

unsat
7 changes: 7 additions & 0 deletions tests/dolmen/bitv/errors/testfile-bitv047.smt2
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(set-logic BV)
(assert
(exists ((x (_ BitVec 2)))
(and
(bvslt x (_ bv1 2))
(forall ((y (_ BitVec 2))) (= y (_ bv1 2))))))
(check-sat)

0 comments on commit f330337

Please sign in to comment.