From 14bc7731996cd27f1d2193d2f841e92ae8fad703 Mon Sep 17 00:00:00 2001 From: James Zern Date: Tue, 15 Jul 2014 23:34:16 -0700 Subject: [PATCH] sixtap_predict_test: enable NEON tests the offending assembly code was deleted in: 08e38f0 VP8 for ARMv8 by using NEON intrinsics 14 the intrinsics currently pass. fixes issue #725 Change-Id: I43e4263bef21f9d9008c51ffdfa39fcf10b8e776 --- test/sixtap_predict_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sixtap_predict_test.cc b/test/sixtap_predict_test.cc index 1e6d91547..be30f74f4 100644 --- a/test/sixtap_predict_test.cc +++ b/test/sixtap_predict_test.cc @@ -199,7 +199,7 @@ const SixtapPredictFunc sixtap_16x16_neon = vp8_sixtap_predict16x16_neon; const SixtapPredictFunc sixtap_8x8_neon = vp8_sixtap_predict8x8_neon; const SixtapPredictFunc sixtap_8x4_neon = vp8_sixtap_predict8x4_neon; INSTANTIATE_TEST_CASE_P( - DISABLED_NEON, SixtapPredictTest, ::testing::Values( + 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))); -- 2.40.0