From c4892bca3d4cea604d67b733d150c4c2cca08c41 Mon Sep 17 00:00:00 2001 From: "stefan@webrtc.org" Date: Thu, 12 Apr 2012 13:26:22 +0000 Subject: [PATCH] Disable libyuv MirrorTest due to crashes on Linux 32 bit. See http://code.google.com/p/webrtc/issues/detail?id=335 for more info. BUG= TEST= Review URL: https://webrtc-codereview.appspot.com/487003 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2017 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/common_video/libyuv/libyuv_unittest.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/common_video/libyuv/libyuv_unittest.cc b/src/common_video/libyuv/libyuv_unittest.cc index 07225ec8c8..3b30dd3778 100644 --- a/src/common_video/libyuv/libyuv_unittest.cc +++ b/src/common_video/libyuv/libyuv_unittest.cc @@ -194,7 +194,10 @@ TEST_F(TestLibYuv, ConvertTest) { delete [] orig_buffer; } -TEST_F(TestLibYuv, MirrorTest) { +// TODO(holmer): Disabled for now due to crashes on Linux 32 bit. The theory +// is that it crashes due to the fact that the buffers are not 16 bit aligned. +// See http://code.google.com/p/webrtc/issues/detail?id=335 for more info. +TEST_F(TestLibYuv, DISABLED_MirrorTest) { // TODO (mikhal): Add an automated test to confirm output. std::string str; int width = 16;