]> granicus.if.org Git - libvpx/blobdiff - test/vp9_subtract_test.cc
Merge "build/make/configure.sh: Fix armv7 builds in Xcode7."
[libvpx] / test / vp9_subtract_test.cc
index a1798d70687963ac4a63830d4e222cef751fcea7..3cad4d7e6d78b320e3bb6ed062c2afa50872c174 100644 (file)
@@ -9,12 +9,13 @@
  */
 
 #include "third_party/googletest/src/include/gtest/gtest.h"
+
+#include "./vp9_rtcd.h"
+#include "./vpx_config.h"
+#include "./vpx_dsp_rtcd.h"
 #include "test/acm_random.h"
 #include "test/clear_system_state.h"
 #include "test/register_state_check.h"
-#include "./vpx_config.h"
-#include "./vp9_rtcd.h"
-#include "./vpx_dsp_rtcd.h"
 #include "vp9/common/vp9_blockd.h"
 #include "vpx_mem/vpx_mem.h"
 
@@ -100,5 +101,9 @@ INSTANTIATE_TEST_CASE_P(SSE2, VP9SubtractBlockTest,
 INSTANTIATE_TEST_CASE_P(NEON, VP9SubtractBlockTest,
                         ::testing::Values(vpx_subtract_block_neon));
 #endif
+#if HAVE_MSA
+INSTANTIATE_TEST_CASE_P(MSA, VP9SubtractBlockTest,
+                        ::testing::Values(vpx_subtract_block_msa));
+#endif
 
 }  // namespace vp9