summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorhkuang <hkuang@google.com>2014-03-07 11:21:28 -0800
committerhkuang <hkuang@google.com>2014-03-10 10:00:17 -0700
commit4dd053eb5795e53470bac015a24756f3454b8a85 (patch)
tree11d67e5759426615da1a98f6bc7ea6942c56b1e6 /test
parent44a203f5cd55e82dbf9463bbe317e1a855756950 (diff)
downloadlibvpx-4dd053eb5795e53470bac015a24756f3454b8a85.tar
libvpx-4dd053eb5795e53470bac015a24756f3454b8a85.tar.gz
libvpx-4dd053eb5795e53470bac015a24756f3454b8a85.tar.bz2
libvpx-4dd053eb5795e53470bac015a24756f3454b8a85.zip
Disable sixtap_predict_test for neon.
Neon code unit test is failing now due to save/restore neon register operations are not done inside this function, but outside of it. Disable it now until VP8 neon code get cleaned up. Bug: 725 Change-Id: Id1ff1ef50a0e894b41c820a310ff8ba31ef12d18
Diffstat (limited to 'test')
-rw-r--r--test/sixtap_predict_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sixtap_predict_test.cc b/test/sixtap_predict_test.cc
index 1b2f03f53..0c600f402 100644
--- a/test/sixtap_predict_test.cc
+++ b/test/sixtap_predict_test.cc
@@ -198,7 +198,7 @@ const sixtap_predict_fn_t sixtap_16x16_neon = vp8_sixtap_predict16x16_neon;
const sixtap_predict_fn_t sixtap_8x8_neon = vp8_sixtap_predict8x8_neon;
const sixtap_predict_fn_t sixtap_8x4_neon = vp8_sixtap_predict8x4_neon;
INSTANTIATE_TEST_CASE_P(
- NEON, SixtapPredictTest, ::testing::Values(
+ DISABLED_NEON, SixtapPredictTest, ::testing::Values(
make_tuple(16, 16, sixtap_16x16_neon),
make_tuple(8, 8, sixtap_8x8_neon),
make_tuple(8, 4, sixtap_8x4_neon)));