aboutsummaryrefslogtreecommitdiff
path: root/src/reconstruction_test.cc
diff options
context:
space:
mode:
authorSebastian Ramacher <sramacher@debian.org>2024-12-29 12:50:37 +0000
committerSebastian Ramacher <sramacher@debian.org>2024-12-29 12:50:37 +0000
commit873c687c09e0a1a78a8f3601d31330ad1897e484 (patch)
treeff2fa2e2d27b55c002a6d46d50aab2c66e0bf21a /src/reconstruction_test.cc
parent395b1f6877fbc2666383f3428f17400c35aa52a4 (diff)
parentb9ae809f200982119d16ec9613f3db95eca923b9 (diff)
downloadlibgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.gz
libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.tar.bz2
libgav1-873c687c09e0a1a78a8f3601d31330ad1897e484.zip
Merge branch 'master' into 'scrub-obsolete'
# Conflicts: # debian/changelog
Diffstat (limited to 'src/reconstruction_test.cc')
-rw-r--r--src/reconstruction_test.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/reconstruction_test.cc b/src/reconstruction_test.cc
index fd780b3..4d09ada 100644
--- a/src/reconstruction_test.cc
+++ b/src/reconstruction_test.cc
@@ -65,9 +65,8 @@ class ReconstructionTest : public testing::TestWithParam<int> {
const char* const test_case = test_info->test_suite_name();
if (absl::StartsWith(test_case, "C/")) {
} else if (absl::StartsWith(test_case, "SSE41/")) {
- if ((GetCpuInfo() & kSSE4_1) != 0) {
- dsp::InverseTransformInit_SSE4_1();
- }
+ if ((GetCpuInfo() & kSSE4_1) == 0) GTEST_SKIP() << "No SSE4.1 support!";
+ dsp::InverseTransformInit_SSE4_1();
} else if (absl::StartsWith(test_case, "NEON/")) {
dsp::InverseTransformInit_NEON();
} else {