projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
918be39
)
stronger two_smt_engines test
author
Morgan Deters
<mdeters@gmail.com>
Mon, 16 Jul 2012 16:04:56 +0000
(16:04 +0000)
committer
Morgan Deters
<mdeters@gmail.com>
Mon, 16 Jul 2012 16:04:56 +0000
(16:04 +0000)
test/system/two_smt_engines.cpp
patch
|
blob
|
history
diff --git
a/test/system/two_smt_engines.cpp
b/test/system/two_smt_engines.cpp
index 35d6c92cf067e31570cffb21bf11b771b9e09559..587db76569aa8fecc8ab41f9a66d2b5ea77111b6 100644
(file)
--- a/
test/system/two_smt_engines.cpp
+++ b/
test/system/two_smt_engines.cpp
@@
-31,7
+31,8
@@
int main() {
SmtEngine smt(&em);
SmtEngine smt2(&em);
Result r = smt.query(em.mkConst(true));
+ Result r2 = smt2.query(em.mkConst(true));
- return r == Result::VALID ? 0 : 1;
+ return r == Result::VALID
&& r2 == Result::VALID
? 0 : 1;
}