summaryrefslogtreecommitdiff
path: root/test/regress/regress0/smt2output.smt2
blob: dbaad265f3bcb16dbc67ca0a0fc127c61f357e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; This test checks the correct output behavior of SMT-LIBv2 symbols
; (sometimes they have to be |quoted| with pipes).
;
; COMMAND-LINE: -qm
(declare-fun |toto| () Bool)
(declare-fun |to to| () Bool)
(assert (and toto |to to|))
(check-sat)
; EXPECT: sat
(get-model)
; EXPECT: (model
; EXPECT: (define-fun toto () Bool true)
; EXPECT: (define-fun |to to| () Bool true)
; EXPECT: )
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback