diff --git a/test/Multiply/TestMul-VV.cpp b/test/Multiply/TestMul-VV.cpp index 25203c7..dc9ca69 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); @@ -91,7 +91,7 @@ TEMPLATE_TEST_CASE("Vector * Vector", "[multiply]" #endif } - WHEN("Multiplied (without saturation)") { + /*WHEN("Multiplied (without saturation)") { ControlMul(x, y, rCheck); SIMD::Multiply(x, y, r);