aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sizeof.cpp
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-07 23:09:39 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-07 23:09:39 +0100
commitce41b72eb8b0657957893275e4936b0961bae80b (patch)
tree2f6e095785f88e8c59486f9999f79cf9f0a6fcfb /test/sizeof.cpp
parentd5cc083782bc59049755696f2d22edfb0172d124 (diff)
Extend sizeof unit test
Diffstat (limited to 'test/sizeof.cpp')
-rw-r--r--test/sizeof.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sizeof.cpp b/test/sizeof.cpp
index d9ad35620..7044d2062 100644
--- a/test/sizeof.cpp
+++ b/test/sizeof.cpp
@@ -21,6 +21,8 @@ template<typename MatrixType> void verifySizeOf(const MatrixType&)
void test_sizeof()
{
CALL_SUBTEST(verifySizeOf(Matrix<float, 1, 1>()) );
+ CALL_SUBTEST(verifySizeOf(Vector2d()) );
+ CALL_SUBTEST(verifySizeOf(Vector4f()) );
CALL_SUBTEST(verifySizeOf(Matrix4d()) );
CALL_SUBTEST(verifySizeOf(Matrix<double, 4, 2>()) );
CALL_SUBTEST(verifySizeOf(Matrix<bool, 7, 5>()) );