From 4e678b8078c81ebe5e4fef02cdabf397dfedaabf Mon Sep 17 00:00:00 2001 From: Pyry Haulos Date: Fri, 27 May 2016 09:20:49 -0700 Subject: [PATCH] Do not throw exception from destructior in tcu::Either tests Change-Id: I5b63d0c3722d3856ac4b7827f8a4b46da2796856 --- framework/common/tcuEither.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/common/tcuEither.cpp b/framework/common/tcuEither.cpp index c640ded..f5feeab 100644 --- a/framework/common/tcuEither.cpp +++ b/framework/common/tcuEither.cpp @@ -44,7 +44,7 @@ public: ~TestClassWithConstructor (void) { - TCU_CHECK(m_copyCheck == COPYCHECK_VALUE); + DE_TEST_ASSERT(m_copyCheck == COPYCHECK_VALUE); } TestClassWithConstructor (const TestClassWithConstructor& other) -- 2.7.4