shithub: libvpx

Download patch

ref: fffe4768e35027cf5b308e5e7c8f665e3129228d
parent: ce896df057ed3eb39c8be13c69ce964a926fc980
parent: e04273f7b690a73210e7c0ac1cb37d28cfc2e538
author: James Zern <[email protected]>
date: Fri Aug 1 15:17:55 EDT 2014

Merge "frame_size_tests: cosmetics"

--- a/test/frame_size_tests.cc
+++ b/test/frame_size_tests.cc
@@ -7,13 +7,9 @@
  *  in the file PATENTS.  All contributing project authors may
  *  be found in the AUTHORS file in the root of the source tree.
  */
-#include <climits>
-#include <vector>
 #include "third_party/googletest/src/include/gtest/gtest.h"
 #include "test/codec_factory.h"
-#include "test/encode_test_driver.h"
-#include "test/i420_video_source.h"
-#include "test/util.h"
+#include "test/video_source.h"
 
 namespace {
 
@@ -33,10 +29,7 @@
   virtual bool HandleDecodeResult(const vpx_codec_err_t res_dec,
                                   const libvpx_test::VideoSource &video,
                                   libvpx_test::Decoder *decoder) {
-    EXPECT_EQ(expected_res_, res_dec)
-        << "Expected " << expected_res_
-        << "but got " << res_dec;
-
+    EXPECT_EQ(expected_res_, res_dec) << decoder->DecodeError();
     return !::testing::Test::HasFailure();
   }