From: Morgan Deters Date: Wed, 10 Mar 2010 17:23:21 +0000 (+0000) Subject: fix production-build unit testing errors (they assumed that assertions were on) X-Git-Tag: cvc5-1.0.0~9187 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3908dc0247d9cffa67f87294374bbd10a797b1e5;p=cvc5.git fix production-build unit testing errors (they assumed that assertions were on) --- diff --git a/test/unit/context/context_black.h b/test/unit/context/context_black.h index f06ed9f42..548b28d64 100644 --- a/test/unit/context/context_black.h +++ b/test/unit/context/context_black.h @@ -56,8 +56,10 @@ public: // the interface doesn't declare any exceptions d_context->push(); d_context->pop(); +#ifdef CVC4_ASSERTIONS TS_ASSERT_THROWS( d_context->pop(), AssertionException ); TS_ASSERT_THROWS( d_context->pop(), AssertionException ); +#endif /* CVC4_ASSERTIONS */ } void tearDown() { diff --git a/test/unit/expr/node_white.h b/test/unit/expr/node_white.h index 88ae5253f..5b63557ba 100644 --- a/test/unit/expr/node_white.h +++ b/test/unit/expr/node_white.h @@ -235,7 +235,9 @@ public: Debug("boolattr", "get flag 1 on c (should be F)\n"); TS_ASSERT(! c.getAttribute(TestFlag1cd())); +#ifdef CVC4_ASSERTIONS TS_ASSERT_THROWS( d_ctxt->pop(), AssertionException ); +#endif /* CVC4_ASSERTIONS */ } void testAttributes() {