aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--test/stdlist.cpp12
1 files changed, 11 insertions, 1 deletions
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);
}