From 00267e3a471a10e842f771de474f0dca6407a693 Mon Sep 17 00:00:00 2001 From: Hauke Heibel Date: Fri, 11 Jun 2010 12:13:29 +0200 Subject: Added some verbosity on failures in order to get an idea of what is goind wrong on GCC 4.3. --- test/stdlist.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'test/stdlist.cpp') diff --git a/test/stdlist.cpp b/test/stdlist.cpp index 451c7752d..c612e634a 100644 --- a/test/stdlist.cpp +++ b/test/stdlist.cpp @@ -48,8 +48,13 @@ void check_stdlist_matrix(const MatrixType& m) ++wi; } - v.resize(21); + v.resize(21); v.back() = x; + if (!test_ei_isApprox(v.back(),x)) + { + std::cout << x << std::endl; + std::cout << v.back() << std::endl; + } VERIFY_IS_APPROX(v.back(), x); v.resize(22,y); VERIFY_IS_APPROX(v.back(), y); @@ -112,6 +117,11 @@ void check_stdlist_quaternion(const QuaternionType&) v.resize(22,y); VERIFY_IS_APPROX(v.back(), y); v.push_back(x); + if (!test_ei_isApprox(v.back(),x)) + { + std::cout << x << std::endl; + std::cout << v.back() << std::endl; + } VERIFY_IS_APPROX(v.back(), x); } -- cgit v1.2.3