33#include " utility/odd_sized_integer.hpp"
44#include " math/math.hpp"
55
6- TEST_CASE (" Construction from and conversion to regular integer" )
6+ TEST_CASE (" Construction from and conversion to regular integer" , " [odd_sized_integer] " )
77{
88static constexpr size_t N = 3 ;
99
@@ -20,7 +20,7 @@ TEST_CASE("Construction from and conversion to regular integer")
2020}
2121}
2222
23- TEST_CASE (" Copy construction" )
23+ TEST_CASE (" Copy construction" , " [odd_sized_integer] " )
2424{
2525odd_sized_integer<5 > oi {5 };
2626const auto oi2 = oi;
@@ -29,15 +29,15 @@ TEST_CASE("Copy construction")
2929REQUIRE (oi2 == 5 );
3030}
3131
32- TEST_CASE (" Move construction" )
32+ TEST_CASE (" Move construction" , " [odd_sized_integer] " )
3333{
3434odd_sized_integer<5 > oi {5 };
3535const auto oi2 = std::move (oi);
3636
3737REQUIRE (oi2 == 5 );
3838}
3939
40- TEST_CASE (" Assignemnt and move assignment" )
40+ TEST_CASE (" Assignemnt and move assignment" , " [odd_sized_integer] " )
4141{
4242odd_sized_integer<5 > oi {5 };
4343
@@ -53,7 +53,7 @@ TEST_CASE("Assignemnt and move assignment")
5353CHECK (oi == 500'000 );
5454}
5555
56- TEST_CASE (" comparison operators" )
56+ TEST_CASE (" comparison operators" , " [odd_sized_integer] " )
5757{
5858odd_sized_integer<7 > o1 {7 };
5959odd_sized_integer<7 > o2 {7'000'000'000ULL };
@@ -90,7 +90,7 @@ TEST_CASE("comparison operators")
9090CHECK (!(o2 != o3.toUi64 ()));
9191}
9292
93- TEST_CASE (" Arithmetics" )
93+ TEST_CASE (" Arithmetics" , " [odd_sized_integer] " )
9494{
9595odd_sized_integer<7 > oi {7 };
9696CHECK (oi + 10 == 17 );
0 commit comments