Adding simple SMT2 parser tests
authorChristopher L. Conway <christopherleeconway@gmail.com>
Tue, 4 May 2010 22:27:40 +0000 (22:27 +0000)
committerChristopher L. Conway <christopherleeconway@gmail.com>
Tue, 4 May 2010 22:27:40 +0000 (22:27 +0000)
test/unit/parser/parser_black.h

index 0389a75efb98c4d2ddba8db200b032b462805939..b8060086f1011dfd70e1ddbbc967e34ac82c824d 100644 (file)
@@ -149,8 +149,10 @@ const int numBadSmtExprs = sizeof(badSmtExprs) / sizeof(string);
 const string goodSmt2Inputs[] = {
     "", // empty string is OK
     "(set-logic QF_UF)",
+    "(set-info :notes |This is a note, take note!|)",
     "(assert true)",
     "(check-sat)",
+    "(exit)",
     "(assert false) (check-sat)",
     "(declare-fun a () Bool) (declare-fun b () Bool)",
     "(declare-fun a () Bool) (declare-fun b () Bool) (assert (=> (and (=> a b) a) b))",
@@ -179,6 +181,7 @@ const int numGoodSmt2Exprs = sizeof(goodSmt2Exprs) / sizeof(string);
 
 const string badSmt2Inputs[] = {
     "(assert)", // no args
+    "(set-info :notes |Symbols can't contain the | character|)",
     "(check-sat true)", // shouldn't have an arg
     "(declare-sort a)", // no arg
     "(declare-sort a 0) (declare-sort a 0)", // double decl