Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: unit_test/rotate_test.cc

Issue 1577973004: Disable a libyuv test that uses C (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: sync with head Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « unit_test/planar_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: unit_test/rotate_test.cc
diff --git a/unit_test/rotate_test.cc b/unit_test/rotate_test.cc
index b7957aa96118d45514da094a352364393e8efbca..1f5b86e95a09b1cce2f0974b76841320ac66b0cf 100644
--- a/unit_test/rotate_test.cc
+++ b/unit_test/rotate_test.cc
@@ -262,28 +262,28 @@ TEST_F(LibYUVRotateTest, DISABLED_NV12Rotate270_Odd) {
disable_cpu_flags_, benchmark_cpu_info_);
}
-TEST_F(LibYUVRotateTest, NV12Rotate0_Inverted) {
+TEST_F(LibYUVRotateTest, NV12Rotate0_Invert) {
NV12TestRotate(benchmark_width_, -benchmark_height_,
benchmark_width_, benchmark_height_,
kRotate0, benchmark_iterations_,
disable_cpu_flags_, benchmark_cpu_info_);
}
-TEST_F(LibYUVRotateTest, NV12Rotate90_Inverted) {
+TEST_F(LibYUVRotateTest, NV12Rotate90_Invert) {
NV12TestRotate(benchmark_width_, -benchmark_height_,
benchmark_height_, benchmark_width_,
kRotate90, benchmark_iterations_,
disable_cpu_flags_, benchmark_cpu_info_);
}
-TEST_F(LibYUVRotateTest, NV12Rotate180_Inverted) {
+TEST_F(LibYUVRotateTest, NV12Rotate180_Invert) {
NV12TestRotate(benchmark_width_, -benchmark_height_,
benchmark_width_, benchmark_height_,
kRotate180, benchmark_iterations_,
disable_cpu_flags_, benchmark_cpu_info_);
}
-TEST_F(LibYUVRotateTest, NV12Rotate270_Inverted) {
+TEST_F(LibYUVRotateTest, NV12Rotate270_Invert) {
NV12TestRotate(benchmark_width_, -benchmark_height_,
benchmark_height_, benchmark_width_,
kRotate270, benchmark_iterations_,
« no previous file with comments | « unit_test/planar_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698