summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-08-01 13:18:30 -0700
committerJames Zern <jzern@google.com>2014-08-01 13:18:30 -0700
commite04273f7b690a73210e7c0ac1cb37d28cfc2e538 (patch)
tree6082ff49d702277f4183d5b25b20a824758c9451
parent5487b6067c5f17ac246079e65d4b7eaa0df97aa8 (diff)
downloadlibvpx-e04273f7b690a73210e7c0ac1cb37d28cfc2e538.tar
libvpx-e04273f7b690a73210e7c0ac1cb37d28cfc2e538.tar.gz
libvpx-e04273f7b690a73210e7c0ac1cb37d28cfc2e538.tar.bz2
libvpx-e04273f7b690a73210e7c0ac1cb37d28cfc2e538.zip
frame_size_tests: cosmetics
- output DecodeError() on failure - remove unused includes Change-Id: Ib5059137f7033089d4010cbdfd633861b9028718
-rw-r--r--test/frame_size_tests.cc11
1 files changed, 2 insertions, 9 deletions
diff --git a/test/frame_size_tests.cc b/test/frame_size_tests.cc
index 34ee8b605..2400c2021 100644
--- 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 @@ class VP9FrameSizeTestsLarge
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();
}