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

Unified Diff: content/common/gpu/media/video_decode_accelerator_unittest.cc

Issue 9150023: Add a cros autotest runner for omx_video_decode_accelerator_unittest (on ARM). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
Index: content/common/gpu/media/video_decode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/video_decode_accelerator_unittest.cc b/content/common/gpu/media/video_decode_accelerator_unittest.cc
index 7d98c5c3a41045ee81e0f0640871bb7c9c4ad10d..688b823ade3f9ccfe9652a9627c8c715af7f0c4d 100644
--- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
@@ -945,7 +945,8 @@ TEST_P(VideoDecodeAcceleratorTest, TestSimpleDecode) {
// Read in the video data.
std::string data_str;
- CHECK(file_util::ReadFileToString(FilePath(test_video_file), &data_str));
+ CHECK(file_util::ReadFileToString(FilePath(test_video_file), &data_str))
+ << "test_video_file: " << test_video_file;
// Initialize the rendering helper.
base::Thread rendering_thread("EglRenderingVDAClientThread");
@@ -1147,6 +1148,7 @@ int main(int argc, char **argv) {
it != switches.end(); ++it) {
if (it->first == "test_video_data") {
test_video_data = it->second.c_str();
+ continue;
}
LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second;
}

Powered by Google App Engine
This is Rietveld 408576698