diff --git a/test/Multiply/TestMul-VV.cpp b/test/Multiply/TestMul-VV.cpp index 4850f6e..f3c209f 100644 --- a/test/Multiply/TestMul-VV.cpp +++ b/test/Multiply/TestMul-VV.cpp @@ -33,13 +33,13 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" InitOne(y, -5); } - WHEN("Multiplied as constexpr (with saturation)") { + //WHEN("Multiplied as constexpr (with saturation)") { static_assert(SIMD::Multiply(T {0}, T {5}) == T {0}); - } + //} - WHEN("Multiplied as constexpr (without saturation)") { + //WHEN("Multiplied as constexpr (without saturation)") { static_assert(SIMD::Multiply(T {0}, T {5}) == T {0}); - } + //} WHEN("Multiplied (with saturation)") { ControlMul(x, y, rCheck);