summaryrefslogtreecommitdiff
path: root/test/vp9_end_to_end_test.cc
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2020-06-17 12:16:51 -0700
committerJames Zern <jzern@google.com>2020-06-18 10:56:39 -0700
commit83769e3d250b05df0bb97fc619f5886587b2a310 (patch)
tree66b0513e0d74b44dad72619ba10be1067acf466f /test/vp9_end_to_end_test.cc
parent0370a43816cadc4939661d7b214a2077f8d25e88 (diff)
downloadlibvpx-83769e3d250b05df0bb97fc619f5886587b2a310.tar
libvpx-83769e3d250b05df0bb97fc619f5886587b2a310.tar.gz
libvpx-83769e3d250b05df0bb97fc619f5886587b2a310.tar.bz2
libvpx-83769e3d250b05df0bb97fc619f5886587b2a310.zip
update googletest to v1.10.0
this moves the framework to c++11 and changes *_TEST_CASE* to _TEST_SUITE BUG=webm:1695 Change-Id: I07f2c20850312a9c7e381b38353d2f9f45889cb1
Diffstat (limited to 'test/vp9_end_to_end_test.cc')
-rw-r--r--test/vp9_end_to_end_test.cc24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/vp9_end_to_end_test.cc b/test/vp9_end_to_end_test.cc
index 0165aa26e..315ce219e 100644
--- a/test/vp9_end_to_end_test.cc
+++ b/test/vp9_end_to_end_test.cc
@@ -334,21 +334,21 @@ TEST_P(EndToEndTestLoopFilterThreading, TileCountChange) {
}
#endif // CONFIG_VP9_DECODER
-VP9_INSTANTIATE_TEST_CASE(EndToEndTestLarge,
- ::testing::ValuesIn(kEncodingModeVectors),
- ::testing::ValuesIn(kTestVectors),
- ::testing::ValuesIn(kCpuUsedVectors));
+VP9_INSTANTIATE_TEST_SUITE(EndToEndTestLarge,
+ ::testing::ValuesIn(kEncodingModeVectors),
+ ::testing::ValuesIn(kTestVectors),
+ ::testing::ValuesIn(kCpuUsedVectors));
-VP9_INSTANTIATE_TEST_CASE(EndToEndNV12,
- ::testing::Values(::libvpx_test::kRealTime),
- ::testing::ValuesIn(kTestVectorsNv12),
- ::testing::ValuesIn({ 6, 7, 8 }));
+VP9_INSTANTIATE_TEST_SUITE(EndToEndNV12,
+ ::testing::Values(::libvpx_test::kRealTime),
+ ::testing::ValuesIn(kTestVectorsNv12),
+ ::testing::ValuesIn({ 6, 7, 8 }));
-VP9_INSTANTIATE_TEST_CASE(EndToEndTestAdaptiveRDThresh,
- ::testing::Values(5, 6, 7), ::testing::Values(8, 9));
+VP9_INSTANTIATE_TEST_SUITE(EndToEndTestAdaptiveRDThresh,
+ ::testing::Values(5, 6, 7), ::testing::Values(8, 9));
#if CONFIG_VP9_DECODER
-VP9_INSTANTIATE_TEST_CASE(EndToEndTestLoopFilterThreading, ::testing::Bool(),
- ::testing::Range(2, 6));
+VP9_INSTANTIATE_TEST_SUITE(EndToEndTestLoopFilterThreading, ::testing::Bool(),
+ ::testing::Range(2, 6));
#endif // CONFIG_VP9_DECODER
} // namespace