From 1f96e19211eece215d6deaec3d53018d9c53579f Mon Sep 17 00:00:00 2001 From: Murphy Berzish Date: Wed, 2 Sep 2015 18:55:45 -0400 Subject: [PATCH] failing test case: SMT2 parse string constants --- src/test/smt2print_parse.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/test/smt2print_parse.cpp b/src/test/smt2print_parse.cpp index 39543d141..349a3c9c8 100644 --- a/src/test/smt2print_parse.cpp +++ b/src/test/smt2print_parse.cpp @@ -98,6 +98,12 @@ void tst_smt2print_parse() { test_parseprint(spec5); + // Test strings + char const* spec6 = + "(assert (= \"abc\" \"abc\"))"; + + test_parseprint(spec6); + // Test ? }