summaryrefslogtreecommitdiff
path: root/test/unit/expr/expr_manager_public.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-10-02 10:28:38 -0700
committerAina Niemetz <aina.niemetz@gmail.com>2018-10-02 10:28:38 -0700
commit8519233cec9501f31aa1789eff60cb802c8df450 (patch)
tree60c87d9fe4c59ac565b3fdd66710229f58bc6a44 /test/unit/expr/expr_manager_public.h
parent64a0e3f1e4a5a8e3070eeadae0f6942b290c2974 (diff)
Fix "catching polymorphic type by value" warnings (#2556)
When using the `TS_ASSERT_THROWS` marco from CxxTest, we have to make sure that we use a reference type for the exception, otherwise the unit test tries to catch the exception by value, resulting in "catching polymorphic type by value" warnings.
Diffstat (limited to 'test/unit/expr/expr_manager_public.h')
-rw-r--r--test/unit/expr/expr_manager_public.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/unit/expr/expr_manager_public.h b/test/unit/expr/expr_manager_public.h
index 9c604aa52..c2a33cc59 100644
--- a/test/unit/expr/expr_manager_public.h
+++ b/test/unit/expr/expr_manager_public.h
@@ -70,7 +70,7 @@ private:
{
delete d_exprManager;
}
- catch (Exception e)
+ catch (Exception& e)
{
cerr << "Exception during tearDown():" << endl << e;
throw;
@@ -118,12 +118,14 @@ private:
void testMkAssociativeTooFew() {
std::vector<Expr> vars = mkVars(d_exprManager->booleanType(), 1);
- TS_ASSERT_THROWS( d_exprManager->mkAssociative(AND,vars), IllegalArgumentException);
+ TS_ASSERT_THROWS(d_exprManager->mkAssociative(AND, vars),
+ IllegalArgumentException&);
}
void testMkAssociativeBadKind() {
std::vector<Expr> vars = mkVars(d_exprManager->integerType(), 10);
- TS_ASSERT_THROWS( d_exprManager->mkAssociative(LEQ,vars), IllegalArgumentException);
+ TS_ASSERT_THROWS(d_exprManager->mkAssociative(LEQ, vars),
+ IllegalArgumentException&);
}
};
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback