diff options
author | James Zern <jzern@google.com> | 2015-10-01 02:10:22 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-10-01 02:10:22 +0000 |
commit | 20f43ddfdeceb001284707f4ff68e78c9aaebb47 (patch) | |
tree | f14dad2100254a5e5dee6483baac07672abd3dcf /test | |
parent | 31498df5f08a66a2e208cdbcd3e276f69e6ef7c7 (diff) | |
parent | 14bc7731996cd27f1d2193d2f841e92ae8fad703 (diff) | |
download | libvpx-20f43ddfdeceb001284707f4ff68e78c9aaebb47.tar.gz |
Merge "sixtap_predict_test: enable NEON tests"
Diffstat (limited to 'test')
-rw-r--r-- | test/sixtap_predict_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sixtap_predict_test.cc b/test/sixtap_predict_test.cc index 8c7c98d8b..1e682e7bd 100644 --- a/test/sixtap_predict_test.cc +++ b/test/sixtap_predict_test.cc @@ -201,7 +201,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))); |