From fa3d8f677b6a30c2115e7d167d4938e293dfad81 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Aug 2018 16:27:07 +0200 Subject: Add StaticBitVec type --- test/test_bitvec.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/test_bitvec.cpp') diff --git a/test/test_bitvec.cpp b/test/test_bitvec.cpp index 0b6e534..b891aca 100644 --- a/test/test_bitvec.cpp +++ b/test/test_bitvec.cpp @@ -21,6 +21,7 @@ #include "chilbert/BigBitVec.hpp" #include "chilbert/FixBitVec.hpp" +#include "chilbert/StaticBitVec.hpp" #include #include @@ -348,5 +349,15 @@ main() test(ctx); test(ctx); + test, 0>(ctx); + test, 1>(ctx); + test, 31>(ctx); + test, 32>(ctx); + test, 33>(ctx); + test, 63>(ctx); + test, 64>(ctx); + test, 65>(ctx); + test, 997>(ctx); + return 0; } -- cgit v1.2.1