Skip to content

Commit 286dd5d

Browse files
committed
More regression tests
1 parent 0611907 commit 286dd5d

File tree

4 files changed

+16
-0
lines changed

4 files changed

+16
-0
lines changed

tests/regress/bv/issue190.smt2

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(set-logic QF_BV)
2+
(declare-const a (_ BitVec 6))
3+
(assert (= ((_ rotate_left 10) a) ((_ rotate_right 10) a)))
4+
(assert (distinct a #b000000))
5+
(assert (distinct a #b111111))
6+
(check-sat)
7+
(exit)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sat

tests/regress/bv/issue190b.smt2

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(set-logic QF_BV)
2+
(declare-const a (_ BitVec 5))
3+
(assert (= ((_ rotate_left 9) a) ((_ rotate_right 9) a)))
4+
(assert (distinct a #b00000))
5+
(assert (distinct a #b11111))
6+
(check-sat)
7+
(exit)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
unsat

0 commit comments

Comments
 (0)