summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-07-24 10:05:20 -0500
committerGitHub <noreply@github.com>2019-07-24 10:05:20 -0500
commit892718a5925075ad9024e2183060c4c25d2716e0 (patch)
tree0b1c4b6049e7f9d9a4de775671987fe0ef82cdbf /test/regress/regress1
parentafe40162490ac54e1741e80d43496268ae76201d (diff)
Fix null node when using no-strings-lazy-pp (#3114)
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/strings/no-lazy-pp-quant.smt29
1 files changed, 9 insertions, 0 deletions
diff --git a/test/regress/regress1/strings/no-lazy-pp-quant.smt2 b/test/regress/regress1/strings/no-lazy-pp-quant.smt2
new file mode 100644
index 000000000..672c4e5fc
--- /dev/null
+++ b/test/regress/regress1/strings/no-lazy-pp-quant.smt2
@@ -0,0 +1,9 @@
+; COMMAND-LINE: --strings-exp --no-strings-lazy-pp
+; EXPECT: sat
+(set-info :smt-lib-version 2.5)
+(set-logic ALL)
+(set-info :status sat)
+(declare-fun result () Int)
+(declare-fun s () String)
+(assert (! (not (= (str.to.int s) result)) :named a0))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback