From 19564cb4f77660cdb2f980ca619d4b979b9fe342 Mon Sep 17 00:00:00 2001 From: Boyuan Yang Date: Mon, 27 Nov 2023 22:46:29 -0500 Subject: New upstream version 0.19.0 --- src/dsp/motion_vector_search_test.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/dsp/motion_vector_search_test.cc') diff --git a/src/dsp/motion_vector_search_test.cc b/src/dsp/motion_vector_search_test.cc index a7b2ec8..5c680d6 100644 --- a/src/dsp/motion_vector_search_test.cc +++ b/src/dsp/motion_vector_search_test.cc @@ -55,9 +55,8 @@ class MotionVectorSearchTest : public testing::TestWithParam, } else if (absl::StartsWith(test_case, "NEON/")) { MotionVectorSearchInit_NEON(); } else if (absl::StartsWith(test_case, "SSE41/")) { - if ((GetCpuInfo() & kSSE4_1) != 0) { - MotionVectorSearchInit_SSE4_1(); - } + if ((GetCpuInfo() & kSSE4_1) == 0) GTEST_SKIP() << "No SSE4.1 support!"; + MotionVectorSearchInit_SSE4_1(); } else { FAIL() << "Unrecognized architecture prefix in test case name: " << test_case; -- cgit v1.2.3