]> granicus.if.org Git - libvpx/commitdiff
disable SSSE3/VP9QuantizeTest* in hbd builds
authorJames Zern <jzern@google.com>
Mon, 14 Aug 2017 16:31:14 +0000 (09:31 -0700)
committerJames Zern <jzern@google.com>
Mon, 14 Aug 2017 16:31:14 +0000 (09:31 -0700)
this test fails with the configuration similar to the assembly prior to:
d52cb5972 quantize: copy ssse3 optimizations to intrinsics

BUG=webm:1458

Change-Id: Idc5c0b84c0598259fc49609a9f0756de531d3baf

test/vp9_quantize_test.cc

index 944168a8f3783d986d6c794234dd34ed8e6921cc..7a73f207eb7129e12d49ba6c5d4078db1ff0c51c 100644 (file)
@@ -334,10 +334,13 @@ INSTANTIATE_TEST_CASE_P(SSE2, VP9QuantizeTest,
 #endif  // HAVE_SSE2
 
 #if HAVE_SSSE3
+#if !CONFIG_VP9_HIGHBITDEPTH
+// TODO(johannkoenig): SSSE3 optimizations do not yet pass this test.
 INSTANTIATE_TEST_CASE_P(SSSE3, VP9QuantizeTest,
                         ::testing::Values(make_tuple(&vpx_quantize_b_ssse3,
                                                      &vpx_quantize_b_c,
                                                      VPX_BITS_8, 16)));
+#endif
 
 #if ARCH_X86_64
 // TODO(johannkoenig): SSSE3 optimizations do not yet pass this test.