Commit 5d0a871d authored by Frank Barchard's avatar Frank Barchard

remove have jpeg test

This test is just a printf, not a real test, but somehow
fails on arm.

TBR=harryjin@google.com
BUG=libyuv:506

Review URL: https://codereview.chromium.org/1409913002 .
parent cf19a0c9
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1511
Version: 1512
License: BSD
License File: LICENSE
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1511
#define LIBYUV_VERSION 1512
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
......@@ -37,7 +37,7 @@ namespace libyuv {
#endif
#define TESTCS(TESTNAME, YUVTOARGB, ARGBTOYUV, HS1, HS, HN, DIFF) \
TEST_F(LibYUVColorTest, DISABLED_ ## TESTNAME) { \
TEST_F(LibYUVColorTest, TESTNAME) { \
const int kPixels = benchmark_width_ * benchmark_height_; \
const int kHalfPixels = ((benchmark_width_ + 1) / 2) * \
((benchmark_height_ + HS1) / HS); \
......
......@@ -1448,14 +1448,6 @@ TEST_F(LibYUVConvertTest, CropNV12) {
free_aligned_buffer_64(src_y);
}
TEST_F(LibYUVConvertTest, HaveJPEG) {
#ifdef HAVE_JPEG
printf("JPEG enabled\n.");
#else
printf("JPEG disabled\n.");
#endif
}
TEST_F(LibYUVConvertTest, TestYToARGB) {
uint8 y[32];
uint8 expectedg[32];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment