]> granicus.if.org Git - libvpx/commitdiff
vp8_denoiser_sse2_test: disable BitexactCheck w/gcc-8+
authorJames Zern <jzern@google.com>
Fri, 5 Feb 2021 18:21:39 +0000 (10:21 -0800)
committerJames Zern <jzern@google.com>
Fri, 5 Feb 2021 18:21:39 +0000 (10:21 -0800)
this test fails under gcc 8-10, but not with other compilers

Bug: webm:1718
Change-Id: I8c6c7a25c4aaf019a7f91f835a1a2c9a731cfadc

test/vp8_denoiser_sse2_test.cc

index ae547f007f375b0123b3eeca4418659fa387765f..8cb84ddd8e87b33d028f5beae3d0a95899e3a55f 100644 (file)
@@ -40,7 +40,12 @@ class VP8DenoiserTest : public ::testing::TestWithParam<int> {
   int increase_denoising_;
 };
 
+// TODO(https://crbug.com/webm/1718): This test fails with gcc 8-10.
+#if defined(__GNUC__) && __GNUC__ >= 8
+TEST_P(VP8DenoiserTest, DISABLED_BitexactCheck) {
+#else
 TEST_P(VP8DenoiserTest, BitexactCheck) {
+#endif
   ACMRandom rnd(ACMRandom::DeterministicSeed());
   const int count_test_block = 4000;
   const int stride = 16;